diff options
author | Veetaha <[email protected]> | 2020-02-03 08:50:19 +0000 |
---|---|---|
committer | Veetaha <[email protected]> | 2020-02-03 08:50:19 +0000 |
commit | 8f25408a12b0325f555b6110b973176e612706ca (patch) | |
tree | 7167b018da79734b342dd86e580397629e6202fe /editors/code | |
parent | 0ade5cb2b331a3a1753c917a576111cd0f0a9915 (diff) |
vscode: fix bundling by switching to es2015 target modules system
Diffstat (limited to 'editors/code')
-rw-r--r-- | editors/code/tsconfig.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/tsconfig.json b/editors/code/tsconfig.json index 1e17e4510..1740abb2e 100644 --- a/editors/code/tsconfig.json +++ b/editors/code/tsconfig.json | |||
@@ -1,6 +1,6 @@ | |||
1 | { | 1 | { |
2 | "compilerOptions": { | 2 | "compilerOptions": { |
3 | "module": "commonjs", | 3 | "module": "es2015", |
4 | "target": "es2018", | 4 | "target": "es2018", |
5 | "outDir": "out", | 5 | "outDir": "out", |
6 | "lib": [ | 6 | "lib": [ |