Skip to content

Commit

Permalink
Update paths & add tslib
Browse files Browse the repository at this point in the history
  • Loading branch information
cetincakiroglu committed Nov 22, 2022
1 parent 24f3047 commit 3fd8075
Showing 1 changed file with 18 additions and 24 deletions.
42 changes: 18 additions & 24 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,22 @@
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"module": "es2020",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "ES2022",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2020",
"dom"
],
"paths": {
"primeng/*": [
"src/app/components/*/public_api"
]
},
"useDefineForClassFields": false
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"module": "es2020",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "ES2022",
"typeRoots": ["node_modules/@types"],
"lib": ["es2020", "dom"],
"paths": {
"primeng/*": ["src/app/components/*/public_api"],
"tslib": ["node_modules/tslib/tslib.d.ts"]
},
"useDefineForClassFields": false
}
}
}

0 comments on commit 3fd8075

Please sign in to comment.