File tree Expand file tree Collapse file tree 3 files changed +15
-13
lines changed Expand file tree Collapse file tree 3 files changed +15
-13
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ export default tseslint.config({
11
11
languageOptions : {
12
12
parserOptions : {
13
13
parser : '@typescript-eslint/parser' ,
14
- project : "./tsconfig.json"
14
+ project : "./tsconfig.eslint. json"
15
15
} ,
16
16
} ,
17
17
plugins : {
Original file line number Diff line number Diff line change
1
+ {
2
+ "extends" : " ./tsconfig.json" ,
3
+ "compilerOptions" : {
4
+ "outDir" : " /dev/null" ,
5
+ },
6
+ "include" : [
7
+ " ./lib/**/*" ,
8
+ " ./test/**/*"
9
+ ]
10
+ }
Original file line number Diff line number Diff line change 2
2
"compilerOptions" : {
3
3
"outDir" : " ./dist" ,
4
4
"pretty" : true ,
5
- "target" : " es2015 " ,
6
- "lib" : [" es2015 " ],
5
+ "target" : " es2019 " ,
6
+ "lib" : [" es2019 " ],
7
7
"module" : " commonjs" ,
8
+ "allowJs" : false ,
8
9
"sourceMap" : true ,
9
10
"declaration" : true ,
10
11
"importHelpers" : true ,
11
12
"strict" : true ,
12
13
"noImplicitAny" : false
13
14
},
14
- "include" : [
15
- " lib" ,
16
- " test"
17
- ],
18
- "files" : [
19
- " node_modules/typescript/lib/lib.es6.d.ts"
20
- ],
21
- "exclude" : [
22
- " node_modules"
23
- ]
15
+ "include" : [" ./lib/**/*" ]
24
16
}
You can’t perform that action at this time.
0 commit comments