Fix tsc on Windows - globbing doesn't work there.

There's probably a cleaner way to do this...
This commit is contained in:
Bryce Gibson
2021-09-30 16:48:33 +10:00
parent 60747897dc
commit 053712c8d3
2 changed files with 11 additions and 1 deletions
+1 -1
View File
@@ -18,7 +18,7 @@
"lint": "tslint \"{src,plugins,tasks}/**/*.ts\" --fix",
"prepare": "npm run lint && npm run build && npm test",
"prebuild": "rimraf lib",
"build": "tsc --declaration && tsc tasks/*.ts --noEmit --skipLibCheck && webpack",
"build": "tsc --declaration && tsc -p tasks && webpack",
"postbuild": "ts-node tasks/post-build"
},
"repository": {
+10
View File
@@ -0,0 +1,10 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"noEmit": true
},
"include":[
"*.ts"
]
}