build: update dependencies and project config
This commit is contained in:
+14
-9
@@ -1,19 +1,24 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "ES2022",
|
||||
"module": "CommonJS",
|
||||
"moduleResolution": "Node",
|
||||
"module": "NodeNext",
|
||||
"moduleResolution": "NodeNext", // Modern resolution
|
||||
"rootDir": "src", // Limits scope
|
||||
"outDir": "dist",
|
||||
"mapRoot": "maps",
|
||||
"sourceMap": true,
|
||||
"resolveJsonModule": true,
|
||||
"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,
|
||||
"allowJs": true
|
||||
},
|
||||
"include": [
|
||||
"src"
|
||||
]
|
||||
"include": ["src/**/*.ts"],
|
||||
"exclude": ["node_modules", "dist"] // Explicitly exclude build artifacts
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user