25 lines
760 B
JSON
25 lines
760 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext", // Modern resolution
|
|
"rootDir": "src", // Limits scope
|
|
"outDir": "dist",
|
|
"incremental": true, // HUGE performance boost
|
|
"isolatedModules": true, // Ensures compatibility with fast runners
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
"exclude": ["node_modules", "dist"] // Explicitly exclude build artifacts
|
|
}
|