mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 01:37:20 +00:00
a68f5aa83e
This moves the gulp files into the top level tsconfig project. However this also revealed that they were not being type checked and contain main errors, so I've also disabled `checkJs` for now
30 lines
722 B
JSON
30 lines
722 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2020",
|
|
"lib": ["ES2020"],
|
|
"module": "commonjs",
|
|
"removeComments": false,
|
|
"preserveConstEnums": true,
|
|
"sourceMap": false,
|
|
"resolveJsonModule": true,
|
|
"experimentalDecorators": true,
|
|
// enable JavaScript type checking for the language service
|
|
// use the tsconfig.build.json for compiling which disable JavaScript
|
|
// type checking so that JavaScript file are not transpiled
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"exactOptionalPropertyTypes": false,
|
|
"useUnknownInCatchVariables": false,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"newLine": "lf",
|
|
"noEmit": true
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.js"
|
|
],
|
|
"exclude": [
|
|
"node_modules/**"
|
|
]
|
|
}
|