-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: upgrade ng-packs angular version to the latest
resolves #5389
- Loading branch information
1 parent
d621e96
commit 8380b89
Showing
6 changed files
with
802 additions
and
854 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,41 @@ | ||
/* | ||
This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. | ||
It is not intended to be used to perform a compilation. | ||
To learn more about this file see: https://angular.io/config/solution-tsconfig. | ||
*/ | ||
{ | ||
"files": [], | ||
"references": [ | ||
{ | ||
"path": "./packages/core/tsconfig.lib.json" | ||
}, | ||
{ | ||
"path": "./packages/theme-shared/tsconfig.lib.json" | ||
}, | ||
{ | ||
"path": "./packages/theme-basic/tsconfig.lib.json" | ||
}, | ||
{ | ||
"path": "./packages/account/tsconfig.lib.json" | ||
}, | ||
{ | ||
"path": "./packages/permission-management/tsconfig.lib.json" | ||
}, | ||
{ | ||
"path": "./packages/identity/tsconfig.lib.json" | ||
}, | ||
{ | ||
"path": "./packages/feature-management/tsconfig.lib.json" | ||
}, | ||
{ | ||
"path": "./packages/tenant-management/tsconfig.lib.json" | ||
}, | ||
{ | ||
"path": "./packages/setting-management/tsconfig.lib.json" | ||
}, | ||
{ | ||
"path": "./apps/dev-app/tsconfig.dev.json" | ||
"compileOnSave": false, | ||
"compilerOptions": { | ||
"baseUrl": "./", | ||
"outDir": "./dist/out-tsc", | ||
"sourceMap": true, | ||
"declaration": false, | ||
"downlevelIteration": true, | ||
"experimentalDecorators": true, | ||
"module": "esnext", | ||
"moduleResolution": "node", | ||
"importHelpers": true, | ||
"target": "es2015", | ||
"typeRoots": ["node_modules/@types"], | ||
"lib": ["es2018", "dom"], | ||
"types": ["jest"], | ||
"paths": { | ||
"@abp/ng.core": ["packages/core/src/public-api.ts"], | ||
"@abp/ng.theme.shared": ["packages/theme-shared/src/public-api.ts"], | ||
"@abp/ng.theme.shared/extensions": ["packages/theme-shared/extensions/src/public-api.ts"], | ||
"@abp/ng.components/tree": ["packages/components/tree/src/public-api.ts"], | ||
"@abp/ng.theme.basic": ["packages/theme-basic/src/public-api.ts"], | ||
"@abp/ng.account": ["packages/account/src/public-api.ts"], | ||
"@abp/ng.account/config": ["packages/account/config/src/public-api.ts"], | ||
"@abp/ng.identity": ["packages/identity/src/public-api.ts"], | ||
"@abp/ng.identity/config": ["packages/identity/config/src/public-api.ts"], | ||
"@abp/ng.tenant-management": ["packages/tenant-management/src/public-api.ts"], | ||
"@abp/ng.tenant-management/config": ["packages/tenant-management/config/src/public-api.ts"], | ||
"@abp/ng.setting-management": ["packages/setting-management/src/public-api.ts"], | ||
"@abp/ng.setting-management/config": ["packages/setting-management/config/src/public-api.ts"], | ||
"@abp/ng.permission-management": ["packages/permission-management/src/public-api.ts"], | ||
"@abp/ng.feature-management": ["packages/feature-management/src/public-api.ts"], | ||
"@proxy": ["apps/dev-app/src/app/proxy/index.ts"], | ||
"@proxy/*": ["apps/dev-app/src/app/proxy/*"] | ||
} | ||
] | ||
} | ||
}, | ||
"angularCompilerOptions": { | ||
"fullTemplateTypeCheck": true, | ||
"strictInjectionParameters": true | ||
} | ||
} |
Oops, something went wrong.