nitro-react/tsconfig.json

35 lines
856 B
JSON
Raw Normal View History

{
2024-06-19 00:58:45 +02:00
"compilerOptions": {
"baseUrl": "./src",
"target": "es2022",
2024-06-20 22:43:59 +02:00
"lib": [
"dom",
"dom.iterable",
"esnext"
],
2024-06-19 00:58:45 +02:00
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": false,
"downlevelIteration": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": false,
"module": "ES2022",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"paths": {
2024-06-20 22:43:59 +02:00
"@layout/*": [
"layout/*"
]
2024-06-19 00:58:45 +02:00
}
},
2024-06-20 22:43:59 +02:00
"include": [
"src",
"node_modules/@nitrots/nitro-renderer/src/**/*.ts"
]
}