File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 56
56
"scripts" : {
57
57
"lint" : " prettier --check ." ,
58
58
"lint-fix" : " prettier --write ." ,
59
- "clean" : " rimraf dist tsconfig.schema.json tsconfig.schemastore-schema.json tsconfig.tsbuildinfo tests/ts-node-packed.tgz" ,
59
+ "clean" : " rimraf dist tsconfig.schema.json tsconfig.schemastore-schema.json tests/ts-node-packed.tgz .tmp " ,
60
60
"rebuild" : " npm run clean && npm run build" ,
61
61
"build" : " npm run build-nopack && npm run build-pack" ,
62
62
"build-nopack" : " npm run build-tsc && npm run build-configSchema" ,
63
- "build-tsc" : " tsc --build ./tsconfig.declarations.json && ( rm -r .tmp/declarations/src 2> /dev/null || true) && tsc --build ./tsconfig.build.json" ,
63
+ "build-tsc" : " tsc --build ./tsconfig.declarations.json && rimraf .tmp/declarations/src && tsc --build ./tsconfig.build.json" ,
64
64
"build-configSchema" : " typescript-json-schema --topRef --refs --validationKeywords allOf --out tsconfig.schema.json tsconfig.build-schema.json TsConfigSchema && node --require ./register ./scripts/create-merged-schema" ,
65
65
"build-pack" : " node ./scripts/build-pack.js" ,
66
66
"test-spec" : " ava" ,
Original file line number Diff line number Diff line change 11
11
"noEmit" : false ,
12
12
"allowJs" : false ,
13
13
"rootDir" : " src" ,
14
+ "outDir" : " dist" ,
15
+ "tsBuildInfoFile" : " .tmp/tsconfig.build.tsbuildinfo" ,
14
16
"rootDirs" : [
15
17
" ." ,
16
18
" .tmp/declarations"
17
19
],
18
- "outDir" : " dist" ,
19
- "tsBuildInfoFile" : " .tmp/tsconfig.build.tsbuildinfo" ,
20
20
}
21
21
}
You can’t perform that action at this time.
0 commit comments