openscad-playground/tsconfig.json
2023-03-26 15:28:05 +01:00

31 lines
651 B
JSON

{
"compilerOptions": {
"target": "ES2021",
"lib": [
"dom",
"dom.iterable",
"ES2021",
"WebWorker",
],
"rootDir": "src",
// "outDir": "js",
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
// "noEmit": true,
"jsx": "react-jsx"
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
// "public"
]
}