Files
mushroom-strategy/tsconfig.json
2025-05-27 21:08:22 +02:00

36 lines
834 B
JSON

{
"include": [
"src/**/*"
],
"compilerOptions": {
// 1. Language and Environment
"target": "ES2020",
"jsx": "react",
// 2. Module System
"module": "ES2020",
"moduleResolution": "Node",
"outDir": "./dist",
"resolveJsonModule": true,
// 3. JavaScript and Source Maps
"allowJs": true,
"sourceMap": true,
// 4. Interop and Imports
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
// 5. Type Checking and Strictness
"strict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"strictNullChecks": true,
// 6. Project Structure and Build Integrity
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true
},
"ts-node": {
"compilerOptions": {
"module": "CommonJS"
}
}
}