mirror of
https://github.com/DigiLive/mushroom-strategy.git
synced 2025-06-25 01:21:52 +02:00
34 lines
872 B
JSON
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"
|
|
}
|
|
}
|
|
}
|