theatre/examples/r3f-cra/tsconfig.json

29 lines
597 B
JSON
Raw Normal View History

2021-08-07 22:30:29 +02:00
{
"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"
]
}