Files
rabbit/tsconfig.json
Shusui MOYATANI 2aa85b3ed9 initial
2023-02-17 17:15:13 +09:00

38 lines
725 B
JSON

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