Skip to content

Commit

Permalink
fix(lib): updated tsconfig file
Browse files Browse the repository at this point in the history
  • Loading branch information
AnthonyNahas committed Jun 21, 2022
1 parent f0563a5 commit 44de506
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 28 deletions.
@@ -1,8 +1,10 @@
/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
"extends": "../../../tsconfig.base.json",
"extends": "../../../tsconfig.json",
"compilerOptions": {
"outDir": "../../../out-tsc/lib",
"target": "es2015",
"outDir": "../../out-tsc/lib",
"declarationMap": true,
"target": "es2020",
"declaration": true,
"inlineSources": true,
"types": [],
Expand Down
@@ -1,6 +1,10 @@
/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
"extends": "./tsconfig.lib.json",
"compilerOptions": {
"declarationMap": false
},
"angularCompilerOptions": {
"enableIvy": false
"compilationMode": "partial"
}
}
47 changes: 23 additions & 24 deletions tsconfig.json
@@ -1,26 +1,25 @@
/*
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": "./tsconfig.app.json"
},
{
"path": "./tsconfig.spec.json"
},
{
"path": "./tsconfig.server.json"
},
{
"path": "./projects/angular-material-extensions/password-strength/tsconfig.lib.json"
},
{
"path": "./projects/angular-material-extensions/password-strength/tsconfig.spec.json"
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"importHelpers": true,
"target": "es2020",
"module": "es2020",
"lib": [
"es2018",
"dom"
],
"paths": {
"@angular-material-extensions/password-strength": [
"dist/angular-material-extensions/password-strength/angular-material-extensions-password-strength",
"dist/angular-material-extensions/password-strength"
]
}
]
}
}
}

0 comments on commit 44de506

Please sign in to comment.