mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-18 00:46:45 +00:00
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.
23 lines
515 B
JSON
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
|
|
}
|
|
}
|