eeg_nest/tsconfig.json

25 lines
620 B
JSON
Raw Normal View History

2023-05-06 00:18:32 +00:00
{
"compilerOptions": {
"module": "commonjs",
2023-05-06 11:57:46 +00:00
"allowJs": true,
2023-05-06 00:18:32 +00:00
"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-06 00:18:32 +00:00
}
}