Skip to content

Commit 8590f80

Browse files
committed
Remove unnecessary tsc settings
1 parent d6d2496 commit 8590f80

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

ci/build/build-code-server.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ MINIFY=${MINIFY-true}
99
main() {
1010
cd "$(dirname "${0}")/../.."
1111

12-
tsc --outDir out --tsBuildInfoFile .cache/out.tsbuildinfo
12+
tsc
13+
1314
# If out/node/entry.js does not already have the shebang,
1415
# we make sure to add it and make it executable.
1516
if ! grep -q -m1 "^#!/usr/bin/env node" out/node/entry.js; then

tsconfig.json

+2-4
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,15 @@
88
"noUnusedLocals": true,
99
"forceConsistentCasingInFileNames": true,
1010
"outDir": "./out",
11-
"allowJs": false,
12-
"jsx": "react",
1311
"declaration": true,
1412
"experimentalDecorators": true,
1513
"esModuleInterop": true,
1614
"allowSyntheticDefaultImports": true,
1715
"sourceMap": true,
18-
"tsBuildInfoFile": "./.tsbuildinfo",
16+
"tsBuildInfoFile": "./.cache/tsbuildinfo",
1917
"incremental": true,
2018
"rootDir": "./src",
2119
"typeRoots": ["./node_modules/@types", "./typings"]
2220
},
23-
"include": ["./src/**/*.ts", "./src/**/*.tsx"]
21+
"include": ["./src/**/*.ts"]
2422
}

0 commit comments

Comments
 (0)