nitro-react/tsconfig.json

33 lines
705 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,
2024-04-12 04:57:26 +02:00
"jsx": "react-jsx",
"paths": {
"@layout/*": ["layout/*"],
}
},
"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",
]
}