Update scripts to point to tsc one folder up

This commit is contained in:
Alex Dima
2022-01-27 17:41:26 +01:00
parent 8211dc3a08
commit f0c9dd6f86
+3 -3
View File
@@ -66,9 +66,9 @@
"vscode-universal-bundler": "^0.0.2"
},
"scripts": {
"compile": "tsc -p tsconfig.build.json",
"watch": "tsc -p tsconfig.build.json --watch",
"npmCheckJs": "tsc --noEmit"
"compile": "../node_modules/.bin/tsc -p tsconfig.build.json",
"watch": "../node_modules/.bin/tsc -p tsconfig.build.json --watch",
"npmCheckJs": "../node_modules/.bin/tsc --noEmit"
},
"dependencies": {}
}