aethex-forge/tsconfig.json
2025-08-05 20:03:34 +00:00

43 lines
1,005 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
/* Linting */
"strict": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitAny": false,
"noFallthroughCasesInSwitch": false,
"strictNullChecks": false,
/* Path mapping */
"baseUrl": ".",
"paths": {
"@/*": ["./client/*"],
"@shared/*": ["./shared/*"]
}
},
"include": [
"client/**/*",
"server/**/*",
"shared/**/*",
"vite.config.ts",
"vite.config.server.ts"
],
"exclude": ["node_modules", "dist"]
}