We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c81592 commit 4b750a7Copy full SHA for 4b750a7
src/main/resources/static/tsconfig.json
@@ -10,8 +10,14 @@
10
"DOM",
11
// lib-admin-ui uses an old version of slickgrid that doesn't support fat arrow
12
"es5",
13
+
14
+ // Even though target is currently es5 for slickgrid using 'Array.find' should work.
15
+ "ES2015.Core", // https://github.com/Microsoft/TypeScript/blob/main/src/lib/es2015.core.d.ts
16
17
+ // Even though target is currently es5 for slickgrid using 'async' should work.
18
+ "ES2015.Promise" // https://github.com/microsoft/TypeScript/blob/main/src/lib/es2015.promise.d.ts
19
20
// "ES2020",
- // "ES2015.Promise"
21
],
22
"paths": {},
23
"rootDir": ".",
0 commit comments