2020-02-04 19:27:46 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-06-23 17:19:50 +00:00
|
|
|
"target": "es2020",
|
2020-02-04 19:27:46 +00:00
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"outDir": "./out",
|
2021-06-23 17:19:50 +00:00
|
|
|
"declaration": false,
|
2020-02-04 19:27:46 +00:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"sourceMap": true,
|
2020-08-04 20:05:13 +00:00
|
|
|
"tsBuildInfoFile": "./.cache/tsbuildinfo",
|
2020-02-04 19:27:46 +00:00
|
|
|
"incremental": true,
|
2021-09-30 03:14:56 +00:00
|
|
|
"typeRoots": [
|
|
|
|
"./node_modules/@types",
|
|
|
|
"./typings",
|
|
|
|
"./test/node_modules/@types",
|
|
|
|
"./vendor/modules/code-oss-dev/src/vs/server/@types"
|
|
|
|
],
|
2020-11-04 02:11:14 +00:00
|
|
|
"downlevelIteration": true
|
2020-02-04 19:27:46 +00:00
|
|
|
},
|
2021-09-30 03:14:56 +00:00
|
|
|
"include": ["./src/**/*"],
|
2021-01-25 23:34:32 +00:00
|
|
|
"exclude": ["/test", "/lib", "/ci", "/doc"]
|
2020-02-04 19:27:46 +00:00
|
|
|
}
|