1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

updated tsconfig.target to "ES2019" (seems like supported by electron@14 for both main/renderer)

Signed-off-by: Roman <ixrock@gmail.com>
This commit is contained in:
Roman 2022-02-15 18:09:50 +02:00
parent d656a9e289
commit 783e6dceec
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ const getTSLoader = (options: Partial<TSLoaderOptions> = {}, testRegExp?: RegExp
loader: "esbuild-loader",
options: {
loader: "tsx",
target: "es2015",
target: "ES2019", // supported by >= electron@14
implementation: esbuild,
},
};

View File

@ -2,7 +2,7 @@
"compilerOptions": {
"baseUrl": ".",
"jsx": "react",
"target": "ES2017",
"target": "ES2019",
"module": "ESNext",
"lib": [
"ESNext",