mirror of https://git.tuxpa.in/a/code-server.git
29 lines
767 B
JSON
29 lines
767 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2020",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"outDir": "./out",
|
|
"declaration": false,
|
|
"experimentalDecorators": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"sourceMap": true,
|
|
"tsBuildInfoFile": "./.cache/tsbuildinfo",
|
|
"incremental": true,
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"./typings",
|
|
"./test/node_modules/@types",
|
|
"./vendor/modules/code-oss-dev/src/vs/server/@types"
|
|
],
|
|
"downlevelIteration": true
|
|
},
|
|
"include": ["./src/**/*"],
|
|
"exclude": ["/test", "/lib", "/ci", "/doc"]
|
|
}
|