Assist_Design/apps/bff/tsconfig.memory.json

32 lines
811 B
JSON
Raw Normal View History

{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"noEmit": true,
// Memory optimization settings
"incremental": true,
"tsBuildInfoFile": "./.tsbuildinfo-memory",
"skipLibCheck": true,
"skipDefaultLibCheck": true,
// Reduce type checking strictness for memory optimization
"noImplicitAny": false,
"strictNullChecks": false,
"strictBindCallApply": false,
"noImplicitReturns": false,
"noFallthroughCasesInSwitch": false,
// Disable some expensive checks
"noUnusedLocals": false,
"noUnusedParameters": false,
"exactOptionalPropertyTypes": false,
"noImplicitOverride": false
},
"include": ["src/**/*"],
"exclude": [
"node_modules",
"dist",
"test",
"**/*.spec.ts",
"**/*.test.ts",
"**/*.e2e-spec.ts"
]
}