File tree 2 files changed +4
-5
lines changed
2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,8 @@ MINIFY=${MINIFY-true}
9
9
main () {
10
10
cd " $( dirname " ${0} " ) /../.."
11
11
12
- tsc --outDir out --tsBuildInfoFile .cache/out.tsbuildinfo
12
+ tsc
13
+
13
14
# If out/node/entry.js does not already have the shebang,
14
15
# we make sure to add it and make it executable.
15
16
if ! grep -q -m1 " ^#!/usr/bin/env node" out/node/entry.js; then
Original file line number Diff line number Diff line change 8
8
"noUnusedLocals" : true ,
9
9
"forceConsistentCasingInFileNames" : true ,
10
10
"outDir" : " ./out" ,
11
- "allowJs" : false ,
12
- "jsx" : " react" ,
13
11
"declaration" : true ,
14
12
"experimentalDecorators" : true ,
15
13
"esModuleInterop" : true ,
16
14
"allowSyntheticDefaultImports" : true ,
17
15
"sourceMap" : true ,
18
- "tsBuildInfoFile" : " ./.tsbuildinfo" ,
16
+ "tsBuildInfoFile" : " ./.cache/ tsbuildinfo" ,
19
17
"incremental" : true ,
20
18
"rootDir" : " ./src" ,
21
19
"typeRoots" : [" ./node_modules/@types" , " ./typings" ]
22
20
},
23
- "include" : [" ./src/**/*.ts" , " ./src/**/*.tsx " ]
21
+ "include" : [" ./src/**/*.ts" ]
24
22
}
You can’t perform that action at this time.
0 commit comments