Skip to content

Commit

Permalink
Merge branch 'main' into next-major-release/v17
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesHenry committed Nov 7, 2023
2 parents 8e97d20 + f18e0d3 commit 6daffb2
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ jobs:
echo "::set-output name=node_version::$(node --version)"
- name: Apply version resolved by volta to standard Node action make authenticated npm publish easier
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ steps.yarn-cache-dir-path.outputs.node_version }}
registry-url: https://registry.npmjs.org/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import type {
TmplAstContent,
TmplAstElement,
TmplAstTemplate,
TmplAstText,
} from '@angular-eslint/bundled-angular-compiler';
import { getTemplateParserServices } from '@angular-eslint/utils';
import { createESLintRule } from '../utils/create-eslint-rule';
import { getDomElements } from '../utils/get-dom-elements';
import type { TmplAstContent, TmplAstTemplate } from '@angular/compiler';

export const MESSAGE_ID = 'preferSelfClosingTags';
export const RULE_NAME = 'prefer-self-closing-tags';
Expand Down
5 changes: 3 additions & 2 deletions packages/eslint-plugin-template/tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
"compilerOptions": {
"outDir": "./dist",
"resolveJsonModule": true,
"baseUrl": ".",
"module": "NodeNext"
"module": "NodeNext",
"declaration": true,
"baseUrl": "."
},
"include": ["src"]
}
3 changes: 2 additions & 1 deletion packages/eslint-plugin/tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"outDir": "./dist",
"resolveJsonModule": true,
"baseUrl": ".",
"module": "NodeNext"
"module": "NodeNext",
"declaration": true
},
"include": ["src"]
}
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": ".",
"module": "NodeNext",
"paths": {
Expand Down
3 changes: 2 additions & 1 deletion packages/template-parser/tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"compilerOptions": {
"outDir": "./dist",
"baseUrl": ".",
"module": "NodeNext"
"module": "NodeNext",
"declaration": true
},
"include": ["src"]
}

0 comments on commit 6daffb2

Please sign in to comment.