vscode: moved tslib to runtime dependencies and added \"importHelpers\": true

This commit is contained in:
Veetaha 2020-02-01 23:11:39 +02:00
parent 96bd4f5704
commit f08297983f
3 changed files with 4 additions and 4 deletions

View file

@ -749,8 +749,7 @@
"tslib": { "tslib": {
"version": "1.10.0", "version": "1.10.0",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz", "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz",
"integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==", "integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ=="
"dev": true
}, },
"tslint": { "tslint": {
"version": "5.20.1", "version": "5.20.1",

View file

@ -25,7 +25,8 @@
"dependencies": { "dependencies": {
"jsonc-parser": "^2.1.0", "jsonc-parser": "^2.1.0",
"seedrandom": "^3.0.5", "seedrandom": "^3.0.5",
"vscode-languageclient": "^6.1.0" "vscode-languageclient": "^6.1.0",
"tslib": "^1.10.0"
}, },
"devDependencies": { "devDependencies": {
"@rollup/plugin-commonjs": "^11.0.1", "@rollup/plugin-commonjs": "^11.0.1",
@ -35,7 +36,6 @@
"@types/seedrandom": "^2.4.28", "@types/seedrandom": "^2.4.28",
"@types/vscode": "^1.41.0", "@types/vscode": "^1.41.0",
"rollup": "^1.30.1", "rollup": "^1.30.1",
"tslib": "^1.10.0",
"tslint": "^5.20.1", "tslint": "^5.20.1",
"typescript": "^3.7.5", "typescript": "^3.7.5",
"typescript-formatter": "^7.2.2", "typescript-formatter": "^7.2.2",

View file

@ -15,6 +15,7 @@
"noFallthroughCasesInSwitch": true, "noFallthroughCasesInSwitch": true,
"newLine": "LF", "newLine": "LF",
"esModuleInterop": true, "esModuleInterop": true,
"importHelpers": true
}, },
"exclude": [ "exclude": [
"node_modules" "node_modules"