Browse Source

Merge pull request #24887 from abpframework/issue/fix-nightly-build-error

Angular - Fixing the nightly build error for partial compilation
pull/24893/head
Fahri Gedik 1 month ago
committed by GitHub
parent
commit
a9b5121d2f
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 9
      npm/ng-packs/packages/cms-kit/tsconfig.lib.prod.json

9
npm/ng-packs/packages/cms-kit/tsconfig.lib.prod.json

@ -1,7 +1,12 @@
{
"extends": "./tsconfig.lib.json",
"compilerOptions": {
"declarationMap": false
"declarationMap": false,
"target": "ES2022",
"useDefineForClassFields": false,
"skipLibCheck": true
},
"exclude": ["**/*.spec.ts", "jest.config.ts", "src/test-setup.ts", "**/*.test.ts"]
"angularCompilerOptions": {
"compilationMode": "partial"
}
}

Loading…
Cancel
Save