Files
web/tsconfig.json
Sacha Weatherstone a2280ab96e Initial 1.3.x rework
2022-07-26 08:52:23 +10:00

36 lines
985 B
JSON

{
"include": ["src", "types"],
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"baseUrl": "./",
"paths": {
"@app/*": ["./src/*"],
"@pages/*": ["./src/pages/*"],
"@components/*": ["./src/components/*"],
"@core/*": ["./src/core/*"],
"@layouts/*": ["./src/layouts/*"]
},
"importHelpers": true,
"removeComments": true,
"strictNullChecks": true,
"types": ["vite/client", "node"],
"importsNotUsedAsValues": "error",
"strictPropertyInitialization": false,
"experimentalDecorators": true
}
}