Skip to content

Commit

Permalink
Fix gulp files not belonging to any project
Browse files Browse the repository at this point in the history
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
  • Loading branch information
mjbvz committed Feb 28, 2022
1 parent d45c89b commit a68f5aa
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 21 deletions.
15 changes: 0 additions & 15 deletions build/jsconfig.json

This file was deleted.

10 changes: 7 additions & 3 deletions build/tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"allowJs": false,
"checkJs": false
}
}
"checkJs": false,
"noEmit": false
},
"include": [
"**/*.ts"
]
}
7 changes: 4 additions & 3 deletions build/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,17 @@
// use the tsconfig.build.json for compiling which disable JavaScript
// type checking so that JavaScript file are not transpiled
"allowJs": true,
"checkJs": true,
"strict": true,
"exactOptionalPropertyTypes": false,
"useUnknownInCatchVariables": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"newLine": "lf"
"newLine": "lf",
"noEmit": true
},
"include": [
"**/*.ts"
"**/*.ts",
"**/*.js"
],
"exclude": [
"node_modules/**"
Expand Down

0 comments on commit a68f5aa

Please sign in to comment.