use workspace tsdk

This commit is contained in:
Joao Moreno 2016-12-12 11:18:16 +01:00
parent 03d51d419d
commit 7929c74f9f

21
.vscode/settings.json vendored
View file

@ -17,13 +17,18 @@
},
"tslint.enable": true,
"tslint.rulesDirectory": "build/lib/tslint",
"lcov.path": ["./.build/coverage/lcov.info", "./.build/coverage-single/lcov.info"],
"lcov.watch": [{
"pattern": "**/*.test.js",
"command": "${workspaceRoot}/scripts/test.sh --coverage --run ${file}",
"windows": {
"command": "${workspaceRoot}\\scripts\\test.bat --coverage --run ${file}"
"lcov.path": [
"./.build/coverage/lcov.info",
"./.build/coverage-single/lcov.info"
],
"lcov.watch": [
{
"pattern": "**/*.test.js",
"command": "${workspaceRoot}/scripts/test.sh --coverage --run ${file}",
"windows": {
"command": "${workspaceRoot}\\scripts\\test.bat --coverage --run ${file}"
}
}
}],
"typescript.check.workspaceVersion": false
],
"typescript.tsdk": "./node_modules/typescript/lib"
}