mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-13 16:34:39 -06:00
file F, the server will check whether F is configured by a tsconfig.json file. If so, the project specified by the tsconfig.json file becomes the LS context for F.
18 lines
377 B
JSON
18 lines
377 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"noImplicitAny": true,
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"out": "../../built/local/tsserver.js",
|
|
"sourceMap": true
|
|
},
|
|
"files": [
|
|
"node.d.ts",
|
|
"editorServices.ts",
|
|
"protocol.d.ts",
|
|
"server.ts",
|
|
"session.ts"
|
|
]
|
|
}
|