File tree Expand file tree Collapse file tree 4 files changed +26
-7
lines changed Expand file tree Collapse file tree 4 files changed +26
-7
lines changed Original file line number Diff line number Diff line change 1
1
package-lock.json
2
2
node_modules /
3
- build /
3
+ dist /
4
4
scripts /spawnInfodump.json
Original file line number Diff line number Diff line change 5
5
"main" : " build/index.js" ,
6
6
"scripts" : {
7
7
"prepare" : " npm run build" ,
8
- "prebuild" : " rimraf build /" ,
8
+ "prebuild" : " rimraf dist /" ,
9
9
"build" : " tsc" ,
10
10
"compile" : " tsc --noEmit" ,
11
11
"test" : " jest" ,
42
42
"ts-jest" : " ^27.0.4" ,
43
43
"ts-node" : " ^10.9.1" ,
44
44
"typescript" : " ^4.4.4"
45
- }
45
+ },
46
+ "files" : [
47
+ " dist/"
48
+ ]
46
49
}
Original file line number Diff line number Diff line change
1
+ {
2
+ "compilerOptions" : {
3
+ "esModuleInterop" : true ,
4
+ "forceConsistentCasingInFileNames" : true ,
5
+ "module" : " commonjs" ,
6
+ "declaration" : true ,
7
+ "declarationMap" : false ,
8
+ "sourceMap" : false ,
9
+ "outDir" : " ./build" ,
10
+ "skipLibCheck" : true ,
11
+ "strict" : true ,
12
+ "lib" : [" es2017" ],
13
+ "target" : " es6" ,
14
+ "resolveJsonModule" : true
15
+ },
16
+ "include" : [" ./**/*" ]
17
+ }
Original file line number Diff line number Diff line change 6
6
"declaration" : true ,
7
7
"declarationMap" : false ,
8
8
"sourceMap" : false ,
9
- "outDir" : " ./build " ,
9
+ "outDir" : " ./dist " ,
10
10
"skipLibCheck" : true ,
11
11
"strict" : true ,
12
12
"lib" : [" es2017" ],
13
- "target" : " es6" ,
14
- "resolveJsonModule" : true
13
+ "target" : " es6"
15
14
},
16
- "include" : [" ./src/**/*" , " ./scripts/**/* " , " ./ decodeString.js" ]
15
+ "include" : [" ./src/**/*" , " ./decodeString.js" ]
17
16
}
You can’t perform that action at this time.
0 commit comments