diff options
author | Tetsuharu OHZEKI <[email protected]> | 2019-12-11 13:40:26 +0000 |
---|---|---|
committer | Tetsuharu OHZEKI <[email protected]> | 2019-12-11 13:40:26 +0000 |
commit | b186c612c4210363929e77409149c1e5d902f647 (patch) | |
tree | fdcb9a78ba9be082389677f362a5bc2df89ca803 /editors | |
parent | 5202b0ecbaab2d44e886828f0e30dee67fad0c5c (diff) |
Use ES2018 for vscode extension
Today's latest vscode v1.40 (Node.jsv12.4/V8 v7.6) supports ES2018
features natively.
We don't have to transform codes to ES6.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/code/tsconfig.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/code/tsconfig.json b/editors/code/tsconfig.json index 9ad2e967b..8cb1e9035 100644 --- a/editors/code/tsconfig.json +++ b/editors/code/tsconfig.json | |||
@@ -1,9 +1,9 @@ | |||
1 | { | 1 | { |
2 | "compilerOptions": { | 2 | "compilerOptions": { |
3 | "module": "commonjs", | 3 | "module": "commonjs", |
4 | "target": "es6", | 4 | "target": "es2018", |
5 | "outDir": "out", | 5 | "outDir": "out", |
6 | "lib": ["es6"], | 6 | "lib": ["es2018"], |
7 | "sourceMap": true, | 7 | "sourceMap": true, |
8 | "rootDir": "src", | 8 | "rootDir": "src", |
9 | "strict": true, | 9 | "strict": true, |