File tree 8 files changed +24
-28
lines changed
8 files changed +24
-28
lines changed Original file line number Diff line number Diff line change 1
- node_modules
2
- dist
3
- build /*
1
+ node_modules /*
2
+ dist /*
3
+ build /*
4
+ .vscode
5
+ .github
6
+ .astro /*
7
+ .nuxt /*
8
+ .eslintrc.js
Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ module.exports = {
7
7
parser : "vue-eslint-parser" ,
8
8
parserOptions : {
9
9
parser : "@typescript-eslint/parser" ,
10
+ sourceType : "module" ,
11
+ project : "./tsconfig.json" ,
12
+ extraFileExtensions : [ ".vue" ] ,
10
13
} ,
11
14
plugins : [
12
15
"@typescript-eslint" ,
@@ -15,10 +18,12 @@ module.exports = {
15
18
extends : [
16
19
"eslint:recommended" ,
17
20
"plugin:@typescript-eslint/eslint-recommended" ,
18
- "plugin:@typescript-eslint/recommended" ,
21
+ "plugin:@typescript-eslint/recommended-type-checked" ,
22
+ "plugin:@typescript-eslint/stylistic-type-checked" ,
19
23
"plugin:vue/recommended" ,
20
24
] ,
21
25
rules : {
26
+ "@typescript-eslint/no-misused-promises" : "off" ,
22
27
"@typescript-eslint/no-explicit-any" : "off" ,
23
28
"@typescript-eslint/no-non-null-assertion" : "off" ,
24
29
"@typescript-eslint/explicit-function-return-type" : "off" ,
Original file line number Diff line number Diff line change 6
6
tmp /
7
7
temp /
8
8
dist /
9
- * .js
10
9
! .eslintrc.js
11
10
centrifugo
Original file line number Diff line number Diff line change 7
7
"files" : [
8
8
" index.ts"
9
9
],
10
- "include" : [
11
- " ../config/Config.d.ts"
12
- ],
13
10
}
Original file line number Diff line number Diff line change 2
2
"extends" : " ../tsconfig.json" ,
3
3
"compilerOptions" : {
4
4
"outDir" : " ./dist" ,
5
- "sourceMap" : true ,
6
5
},
7
6
"files" : [
8
7
" index.ts"
9
8
],
10
- "include" : [
11
- " ../config/Config.d.ts"
12
- ],
13
9
}
Original file line number Diff line number Diff line change
1
+ {
2
+ "extends" : " ../tsconfig.json" ,
3
+ "compilerOptions" : {
4
+ "noEmit" : true
5
+ }
6
+ }
Original file line number Diff line number Diff line change 2
2
"extends" : " ../tsconfig.json" ,
3
3
"compilerOptions" : {
4
4
"outDir" : " ./dist" ,
5
- "sourceMap" : true ,
6
5
},
7
6
"files" : [
8
7
" index.ts" ,
9
8
" cron-runner.ts"
10
9
],
11
- "include" : [
12
- " ../config/Config.d.ts" ,
13
- " ../Typing/passport.d.ts"
14
- ],
15
- "ts-node" : {
16
- "files" : true
17
- }
18
10
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"compilerOptions" : {
3
- "target" : " ES2022" ,
4
- "module" : " commonjs" ,
5
- "moduleResolution" : " node" ,
6
- "outDir" : " Build" ,
3
+ "target" : " ESNext" ,
4
+ "module" : " CommonJS" ,
5
+ "moduleResolution" : " Node" ,
7
6
"emitDecoratorMetadata" : true ,
8
7
"esModuleInterop" : true ,
9
8
"experimentalDecorators" : true ,
10
9
"resolveJsonModule" : true ,
11
10
"strict" : true ,
12
- "noImplicitAny" : false ,
11
+ "noImplicitAny" : true ,
13
12
"types" : [
14
13
" @types/node" ,
15
14
" @nuxt/types" ,
23
22
],
24
23
"sourceMap" : true ,
25
24
},
26
- "include" : [
27
- " ./config/Config.d.ts"
28
- ],
29
25
}
You can’t perform that action at this time.
0 commit comments