File tree 4 files changed +31
-5
lines changed
4 files changed +31
-5
lines changed Original file line number Diff line number Diff line change 6
6
package-lock.json
7
7
/.nyc_output
8
8
/coverage
9
+ modules /** /node_modules
10
+ modules /** /build
Original file line number Diff line number Diff line change 8
8
"bootstrap" : " lerna bootstrap" ,
9
9
"clean" : " npm run clear-build-cache && lerna clean" ,
10
10
"clear-build-cache" : " rimraf ./modules/*/build/*" ,
11
+ "lint" : " standard modules/**/src/*.ts modules/**/test/**/*.ts" ,
11
12
"build" : " tsc -b" ,
12
- "pretest" : " npm build" ,
13
13
"test" : " mocha --require ts-node/register modules/**/test/*test.ts"
14
14
},
15
15
"repository" : {
19
19
20
20
"license" : " UNLICENSED" ,
21
21
"dependencies" : {
22
+ "@typescript-eslint/eslint-plugin" : " ^1.4.2" ,
23
+ "@typescript-eslint/parser" : " ^1.4.2" ,
22
24
"chai" : " ^4.1.2" ,
23
25
"lerna" : " ^2.11.0" ,
24
26
"mocha" : " ^5.2.0" ,
25
27
"rimraf" : " ^2.6.2" ,
28
+ "standard" : " ^12.0.1" ,
26
29
"ts-node" : " ^7.0.1" ,
27
30
"tslib" : " ^1.9.3" ,
28
31
"typescript" : " ^3.2.0"
29
32
},
30
33
"workspaces" : [
31
34
" modules/*"
32
- ]
35
+ ],
36
+ "standard" : {
37
+ "parser" : " @typescript-eslint/parser" ,
38
+ "plugins" : [
39
+ " @typescript-eslint"
40
+ ]
41
+ }
33
42
}
Original file line number Diff line number Diff line change 1
1
{
2
+ "extends" : " ./modules/tsconfig.settings.json" ,
2
3
"files" : [],
3
4
"references" : [
4
5
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+
14
+
15
+
16
+
17
+
5
18
]
6
19
}
Original file line number Diff line number Diff line change 1
1
2
- const compilerOptions = Object . assign (
3
- { "esModuleInterop" : true }
4
- )
2
+ const compilerOptions = Object . assign ( {
3
+ "esModuleInterop" : true ,
4
+ "target" : "esnext" ,
5
+ "module" : "commonjs" ,
6
+ } )
5
7
6
8
module . exports = function ( wallaby ) {
7
9
return {
You can’t perform that action at this time.
0 commit comments