Files
mushroom-strategy/tsconfig.json
2025-05-28 18:20:20 +02:00

34 lines
872 B
JSON

{
"include": ["src/**/*", "webpack.config.ts", "webpack.dev.config.ts"],
"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"
}
}
}