File tree 3 files changed +14
-4
lines changed
3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 8
8
" dist/"
9
9
],
10
10
"scripts" : {
11
- "build" : " tsc -p tsconfig.json" ,
12
- "test" : " jest"
11
+ "build" : " tsc -p tsconfig.build.json" ,
12
+ "test" : " jest" ,
13
+ "lint" : " eslint src/**/*" ,
14
+ "typecheck" : " tsc --noEmit"
13
15
},
14
16
"devDependencies" : {
15
17
"@types/jest" : " ^26.0.14" ,
Original file line number Diff line number Diff line change
1
+ {
2
+ "extends" : " ./tsconfig.json" ,
3
+ "compilerOptions" : {
4
+ "outDir" : " ./dist" ,
5
+ "noEmit" : false
6
+ },
7
+ "include" : [" src" ]
8
+ }
Original file line number Diff line number Diff line change 2
2
"compilerOptions" : {
3
3
"target" : " es5" ,
4
4
"module" : " commonjs" ,
5
+ "noEmit" : true ,
5
6
"declaration" : true ,
6
7
"strict" : true ,
7
8
"noImplicitAny" : true ,
11
12
"alwaysStrict" : true ,
12
13
"noFallthroughCasesInSwitch" : true ,
13
14
"esModuleInterop" : true ,
14
- "forceConsistentCasingInFileNames" : true ,
15
- "outDir" : " ./dist"
15
+ "forceConsistentCasingInFileNames" : true
16
16
},
17
17
"include" : [
18
18
" ./src" , " ./test"
You can’t perform that action at this time.
0 commit comments