theatre/examples/r3f-cra/tsconfig.json
2021-08-07 22:30:29 +02:00

28 lines
597 B
JSON

{
"compilerOptions": {
"esModuleInterop": true,
"jsx": "react-jsx",
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"checkJs": true,
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true
},
"include": [
"src/**/*.js"
]
}