aboutsummaryrefslogtreecommitdiff
path: root/editors/code/tsconfig.json
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-02-03 13:57:14 +0000
committerAleksey Kladov <[email protected]>2020-02-03 14:25:29 +0000
commit30f7e6590a37ef76ac53df665b54dade9aeece7d (patch)
tree6585ba6bb714341e16c7e409a27280d29cad3830 /editors/code/tsconfig.json
parent834fcecd3152b34efc3c194ee0af530e588e0560 (diff)
Remove recent improvements to the build script
tslib as a dev dependency and commonjs modules are definitely *wrong* in the ideal world, **but** in the real world that's the only combination that works. See https://rust-lang.zulipchat.com/#narrow/stream/185405-t-compiler.2Fwg-rls-2.2E0/topic/Problems.20with.20TypeScript.20build
Diffstat (limited to 'editors/code/tsconfig.json')
-rw-r--r--editors/code/tsconfig.json6
1 files changed, 2 insertions, 4 deletions
diff --git a/editors/code/tsconfig.json b/editors/code/tsconfig.json
index 42130c5e1..d74169c29 100644
--- a/editors/code/tsconfig.json
+++ b/editors/code/tsconfig.json
@@ -1,7 +1,6 @@
1{ 1{
2 "compilerOptions": { 2 "compilerOptions": {
3 "moduleResolution": "node", 3 "module": "commonjs",
4 "module": "es2015",
5 "target": "es2018", 4 "target": "es2018",
6 "outDir": "out", 5 "outDir": "out",
7 "lib": [ 6 "lib": [
@@ -15,8 +14,7 @@
15 "noImplicitReturns": true, 14 "noImplicitReturns": true,
16 "noFallthroughCasesInSwitch": true, 15 "noFallthroughCasesInSwitch": true,
17 "newLine": "LF", 16 "newLine": "LF",
18 "esModuleInterop": true, 17 "esModuleInterop": true
19 "importHelpers": true
20 }, 18 },
21 "exclude": [ 19 "exclude": [
22 "node_modules" 20 "node_modules"