eeg_nest/tsconfig.json

28 lines
658 B
JSON
Raw Permalink Normal View History

2023-05-06 00:18:32 +00:00
{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "es2017",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": true,
"noImplicitAny": true,
"strictBindCallApply": true,
"forceConsistentCasingInFileNames": true,
2023-05-06 11:57:46 +00:00
"noFallthroughCasesInSwitch": true,
"jsx": "preserve",
"jsxImportSource": "solid-js"
2023-05-07 00:14:11 +00:00
},
"include": [
"src/**/*.ts",
2023-05-10 16:37:35 +00:00
"src/**/*.tsx",
2023-05-07 00:14:11 +00:00
]
2023-05-06 00:18:32 +00:00
}