super-productivity/src/tsconfig.app.json
Johannes Millan 3f0d0e4f42 fix(build): exclude test helpers from production build
Test helper files under testing/ directories (e.g.,
file-based-sync-test-harness.ts) were included in the production
bundle because they don't match the *.spec.ts exclude pattern.
This caused build failures when devDependencies like 'uuid' were
unavailable in the production build environment.
2026-02-25 16:46:51 +01:00

23 lines
515 B
JSON

{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"outDir": "../.tmp/out-tsc/app",
"types": [],
"strict": true,
"allowSyntheticDefaultImports": true
},
"files": ["main.ts", "polyfills.ts"],
"include": ["app/**/*.ts"],
"exclude": [
"**/*.spec.ts",
"**/*.worker.ts",
"**/__mocks__/**",
"**/testing/**",
"**/test-utils.ts",
"app/util/**/*.ts"
],
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true
}
}