vscode/build/tsconfig.build.json
Matt Bierner a68f5aa83e
Fix gulp files not belonging to any project
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
2022-02-28 15:35:27 -08:00

12 lines
148 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"allowJs": false,
"checkJs": false,
"noEmit": false
},
"include": [
"**/*.ts"
]
}