2020-02-05 03:27:46 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-12-16 01:07:42 +08:00
|
|
|
"target": "es6",
|
|
|
|
"lib": ["es2020", "dom", "dom.iterable"],
|
2020-02-05 03:27:46 +08:00
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"outDir": "./out",
|
2021-06-24 01:19:50 +08:00
|
|
|
"declaration": false,
|
2020-02-05 03:27:46 +08:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"sourceMap": true,
|
2020-08-05 04:05:13 +08:00
|
|
|
"tsBuildInfoFile": "./.cache/tsbuildinfo",
|
2020-02-05 03:27:46 +08:00
|
|
|
"incremental": true,
|
2021-09-30 11:14:56 +08:00
|
|
|
"typeRoots": [
|
|
|
|
"./node_modules/@types",
|
|
|
|
"./typings",
|
|
|
|
"./test/node_modules/@types",
|
2022-03-15 10:37:29 +08:00
|
|
|
"./lib/vscode/src/vs/server/@types"
|
2021-09-30 11:14:56 +08:00
|
|
|
],
|
2020-11-04 10:11:14 +08:00
|
|
|
"downlevelIteration": true
|
2020-02-05 03:27:46 +08:00
|
|
|
},
|
2021-09-30 11:14:56 +08:00
|
|
|
"include": ["./src/**/*"],
|
2021-01-26 07:34:32 +08:00
|
|
|
"exclude": ["/test", "/lib", "/ci", "/doc"]
|
2020-02-05 03:27:46 +08:00
|
|
|
}
|