forked from DigiLive/mushroom-strategy
36 lines
834 B
JSON
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"
|
|
}
|
|
}
|
|
}
|