Skip to content

Commit 66bfa41

Browse files
author
yanis
committed
bump dependency 🚀
1 parent 30684f3 commit 66bfa41

File tree

5 files changed

+8
-12
lines changed

5 files changed

+8
-12
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
node-version: 14.15
1414
- name: Install dependencies
1515
run: npm install
16-
# - name: Lint
17-
# run: "npm run lint"
16+
- name: Lint
17+
run: "npm run lint"
1818
- name: Build
1919
run: "npm run build:lib"

angular.json

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -112,14 +112,10 @@
112112
}
113113
},
114114
"lint": {
115-
"builder": "@angular-devkit/build-angular:tslint",
115+
"builder": "@angular-eslint/builder:lint",
116116
"options": {
117-
"tsConfig": [
118-
"e2e/tsconfig.e2e.json"
119-
],
120-
"exclude": [
121-
"**/node_modules/**"
122-
]
117+
"eslintConfig": ".eslintrc.json",
118+
"lintFilePatterns": ["**/*.spec.ts", "**/*.ts"]
123119
}
124120
}
125121
}

e2e/tsconfig.e2e.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"outDir": "../out-tsc/e2e",
55
"baseUrl": "./",
66
"module": "commonjs",
7-
"target": "es5",
7+
"target": "esnext",
88
"types": [
99
"jasmine",
1010
"jasminewd2",

src/tsconfig.app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"compilerOptions": {
44
"outDir": "../out-tsc/app",
55
"baseUrl": "./",
6-
"module": "es2015",
6+
"module": "esnext",
77
"types": []
88
},
99
"exclude": [

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"declaration": false,
77
"moduleResolution": "node",
88
"experimentalDecorators": true,
9-
"target": "es6",
9+
"target": "esnext",
1010
"typeRoots": [
1111
"node_modules/@types"
1212
],

0 commit comments

Comments
 (0)