Files
rabbit/tsconfig.json
Shusui MOYATANI 47eb2fc57d update nostr-tools
2023-12-22 12:23:49 +09:00

26 lines
690 B
JSON

{
"compilerOptions": {
"strict": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"lib": ["dom", "dom.iterable", "esnext"],
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"types": ["vite/client", "node"],
"noEmit": true,
"isolatedModules": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
"incremental": true
},
"include": ["vite.config.ts", "**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx", "./.eslintrc.js"],
"exclude": ["node_modules"]
}