Skip to content

Commit

Permalink
fix: generate type declarations for published packages (#1586)
Browse files Browse the repository at this point in the history
  • Loading branch information
timkendrick committed Nov 7, 2023
1 parent d4c1eaa commit ba5740b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/eslint-plugin-template/tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"compilerOptions": {
"outDir": "./dist",
"resolveJsonModule": true,
"declaration": true,
"baseUrl": "."
},
"include": ["src"]
Expand Down
1 change: 1 addition & 0 deletions packages/eslint-plugin/tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"compilerOptions": {
"outDir": "./dist",
"resolveJsonModule": true,
"declaration": true,
"baseUrl": "."
},
"include": ["src"]
Expand Down
1 change: 1 addition & 0 deletions packages/schematics/tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "./dist",
"declaration": true,
"baseUrl": ".",
"paths": {
"@angular-eslint/eslint-plugin": ["../../eslint-plugin/dist/index.js"],
Expand Down
1 change: 1 addition & 0 deletions packages/template-parser/tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "./dist",
"declaration": true,
"baseUrl": "."
},
"include": ["src"]
Expand Down

0 comments on commit ba5740b

Please sign in to comment.