mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-20 00:28:52 +01:00
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
12 lines
148 B
JSON
12 lines
148 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"allowJs": false,
|
|
"checkJs": false,
|
|
"noEmit": false
|
|
},
|
|
"include": [
|
|
"**/*.ts"
|
|
]
|
|
}
|