openscad-playground/tsconfig.json

31 lines
645 B
JSON
Raw Normal View History

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