Skip to content

Commit 44de506

Browse files
committed
fix(lib): updated tsconfig file
1 parent f0563a5 commit 44de506

File tree

3 files changed

+33
-28
lines changed

3 files changed

+33
-28
lines changed

projects/angular-material-extensions/password-strength/tsconfig.lib.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1+
/* To learn more about this file see: https://angular.io/config/tsconfig. */
12
{
2-
"extends": "../../../tsconfig.base.json",
3+
"extends": "../../../tsconfig.json",
34
"compilerOptions": {
4-
"outDir": "../../../out-tsc/lib",
5-
"target": "es2015",
5+
"outDir": "../../out-tsc/lib",
6+
"declarationMap": true,
7+
"target": "es2020",
68
"declaration": true,
79
"inlineSources": true,
810
"types": [],
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1+
/* To learn more about this file see: https://angular.io/config/tsconfig. */
12
{
23
"extends": "./tsconfig.lib.json",
4+
"compilerOptions": {
5+
"declarationMap": false
6+
},
37
"angularCompilerOptions": {
4-
"enableIvy": false
8+
"compilationMode": "partial"
59
}
610
}

tsconfig.json

Lines changed: 23 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,25 @@
1-
/*
2-
This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience.
3-
It is not intended to be used to perform a compilation.
4-
5-
To learn more about this file see: https://angular.io/config/solution-tsconfig.
6-
*/
71
{
8-
"files": [],
9-
"references": [
10-
{
11-
"path": "./tsconfig.app.json"
12-
},
13-
{
14-
"path": "./tsconfig.spec.json"
15-
},
16-
{
17-
"path": "./tsconfig.server.json"
18-
},
19-
{
20-
"path": "./projects/angular-material-extensions/password-strength/tsconfig.lib.json"
21-
},
22-
{
23-
"path": "./projects/angular-material-extensions/password-strength/tsconfig.spec.json"
2+
"compileOnSave": false,
3+
"compilerOptions": {
4+
"baseUrl": "./",
5+
"outDir": "./dist/out-tsc",
6+
"sourceMap": true,
7+
"declaration": false,
8+
"downlevelIteration": true,
9+
"experimentalDecorators": true,
10+
"moduleResolution": "node",
11+
"importHelpers": true,
12+
"target": "es2020",
13+
"module": "es2020",
14+
"lib": [
15+
"es2018",
16+
"dom"
17+
],
18+
"paths": {
19+
"@angular-material-extensions/password-strength": [
20+
"dist/angular-material-extensions/password-strength/angular-material-extensions-password-strength",
21+
"dist/angular-material-extensions/password-strength"
22+
]
2423
}
25-
]
26-
}
24+
}
25+
}

0 commit comments

Comments
 (0)