nitro-react/tsconfig.json

30 lines
650 B
JSON
Raw Normal View History

{
"compilerOptions": {
2021-04-14 20:24:24 +02:00
"baseUrl": "./src",
"target": "es6",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
2021-04-14 20:24:24 +02:00
"strict": false,
"downlevelIteration": true,
"forceConsistentCasingInFileNames": true,
2022-05-02 08:34:10 +02:00
"noFallthroughCasesInSwitch": false,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx"
},
"include": [
2021-08-08 01:05:31 +02:00
"src",
2021-09-22 03:48:00 +02:00
"node_modules/@nitrots/nitro-renderer/src/**/*.ts",
]
}