Skip to content

Commit

Permalink
fix: fixed tsconfig path for library
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoninoBonanno committed Jan 17, 2024
1 parent 4afaede commit 54ae4ef
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
7 changes: 6 additions & 1 deletion src/tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@
"compilerOptions": {
"outDir": "../out-tsc/app",
"types": [ "node" ],
"typeRoots": [ "../node_modules/@types" ]
"typeRoots": [ "../node_modules/@types" ],
"paths": {
"design-angular-kit/*": [
"projects/design-angular-kit/src/lib/*"
]
}
},
"files": [
"main.ts",
Expand Down
5 changes: 0 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,6 @@
"es2020",
"dom"
],
"paths": {
"design-angular-kit/*": [
"projects/design-angular-kit/src/lib/*"
]
},
"useDefineForClassFields": false
}
}

0 comments on commit 54ae4ef

Please sign in to comment.