Files
calorie_tracker_2/tsconfig.json
Jp 0999d46bd0 chore: disable incremental compilation in tsconfig
The incremental flag was causing issues with build consistency in certain environments. Disabling it ensures reliable builds across all development setups.
2026-02-02 16:01:02 +08:00

22 lines
547 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "es2017",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": false,
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false
}
}