Skip to content

Commit

Permalink
Fix config?
Browse files Browse the repository at this point in the history
  • Loading branch information
almothafar committed Sep 15, 2024
1 parent e9caff0 commit b4d4a5e
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 35 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto eol=lf
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"e2e": "ng e2e",
"build-lib:watch": "ng build auto-complete --watch",
"build-lib:prod": "ng build auto-complete --configuration production && npm run copy-lib",
"copy-lib": "copyfiles -f LICENSE.md README.md CHANGELOG.md dist/auto-complete"
"copy-lib": "copyfiles -f LICENSE.md README.md CHANGELOG.md dist/"
},
"private": true,
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions projects/auto-complete/ng-package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "../../node_modules/ng-packagr/ng-package.schema.json",
"dest": "../../dist/auto-complete",
"dest": "../../dist/",
"lib": {
"entryFile": "src/public-api.ts"
}
}
}
64 changes: 32 additions & 32 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"module": "ES2020",
"moduleResolution": "node",
"importHelpers": true,
"target": "ES2020",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"ESNext",
"DOM"
],
"paths": {
"auto-complete": [
"dist/auto-complete/auto-complete",
"dist/auto-complete"
]
}
},
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true
}
}
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"module": "ES2020",
"moduleResolution": "node",
"importHelpers": true,
"target": "ES2020",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"ESNext",
"DOM"
],
"paths": {
"auto-complete": [
"dist/auto-complete",
"dist/"
]
}
},
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true
}
}

0 comments on commit b4d4a5e

Please sign in to comment.