diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-02-03 08:54:04 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-02-03 08:54:04 +0000 |
commit | 52456c44901c8c38c8bcb742ebe305484af8f36f (patch) | |
tree | 7167b018da79734b342dd86e580397629e6202fe /editors | |
parent | dbb235ed0756233e669a9a460494ed24e815e8a8 (diff) | |
parent | 8f25408a12b0325f555b6110b973176e612706ca (diff) |
Merge #2993
2993: vscode: fix bundling by switching to es2015 target modules system r=matklad a=Veetaha
Quick fix
Co-authored-by: Veetaha <[email protected]>
Diffstat (limited to 'editors')
-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": [ |