openscad-playground/tsconfig.json
2023-03-25 19:30:34 +00:00

31 lines
645 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"
]
}