mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +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
11 lines
148 B
JSON
11 lines
148 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"allowJs": false,
|
|
"checkJs": false,
|
|
"noEmit": false
|
|
},
|
|
"include": [
|
|
"**/*.ts"
|
|
]
|
|
}
|