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

Updated typescript target to ES2019 (#4869)

Signed-off-by: DmitriyNoa <dmytro.zharkov@gmail.com>
This commit is contained in:
Roman 2022-02-25 17:20:22 +02:00 committed by DmitriyNoa
parent 302828ea80
commit 5c63417695
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", loader: "esbuild-loader",
options: { options: {
loader: "tsx", loader: "tsx",
target: "es2015", target: "ES2019", // supported by >= electron@14
implementation: esbuild, implementation: esbuild,
}, },
}; };

View File

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