mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-20 19:45:07 -06:00
1. /bin/sh requires its arguments joined into a single string unlike cmd. 2. services/ depends on a couple of files from server/ but the order was implicit, and changed from jakefile. Now the order is explicit in the tsconfig.
20 lines
446 B
JSON
20 lines
446 B
JSON
{
|
|
"compilerOptions": {
|
|
"noImplicitAny": true,
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"out": "../../built/local/tsserver.js",
|
|
"sourceMap": true,
|
|
"stripInternal": true
|
|
},
|
|
"files": [
|
|
"../services/shims.ts",
|
|
"../services/utilities.ts",
|
|
"node.d.ts",
|
|
"editorServices.ts",
|
|
"protocol.d.ts",
|
|
"session.ts",
|
|
"server.ts"
|
|
]
|
|
}
|