Skip to content

Commit

Permalink
feat(angular): build for partial ivy mmode
Browse files Browse the repository at this point in the history
This adds support for Angular v12 tooling and library distribution
Ref #23890
  • Loading branch information
mhartington committed Oct 13, 2021
1 parent ed455ab commit 7d232db
Show file tree
Hide file tree
Showing 69 changed files with 34,859 additions and 30,304 deletions.
3 changes: 3 additions & 0 deletions angular/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
dist
virtual-scroll
scripts
35 changes: 35 additions & 0 deletions angular/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"root": true,
"ignorePatterns": ["test/**/*", "src/directives/virtual-scroll/**/*"],
"overrides": [
{
"files": ["*.ts"],
"parserOptions": {
"project": ["tsconfig.json"],
"createDefaultProgram": true
},
"extends": [
"@ionic/eslint-config/recommended",
"plugin:@angular-eslint/recommended",
"plugin:@angular-eslint/template/process-inline-templates"
],
"rules": {
"@typescript-eslint/consistent-type-imports": "off",
"@angular-eslint/component-class-suffix": [
"error",
{
"suffixes": ["Page", "Component"]
}
],
"@angular-eslint/component-selector": [
"error",
{
"type": "element",
"prefix": "ion",
"style": "kebab-case"
}
]
}
}
]
}
4 changes: 4 additions & 0 deletions angular/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
dist
virtual-scroll
scripts
test
Loading

0 comments on commit 7d232db

Please sign in to comment.