mirror of
https://github.com/flarum/framework.git
synced 2024-11-22 11:16:39 +08:00
Add support for .finally
in promises (#3)
See: https://stackoverflow.com/a/54746036/11091039 We use `Promise.finally` in core, but the `tsconfig.json` doesn't list it as supported.
This commit is contained in:
parent
91d4c63090
commit
6040aa0da9
|
@ -16,7 +16,7 @@
|
|||
"target": "es6",
|
||||
"jsx": "preserve",
|
||||
"allowJs": true,
|
||||
"lib": ["es2015", "es2017", "dom"],
|
||||
"lib": ["es2015", "es2017", "dom", "es2018.promise"],
|
||||
"allowSyntheticDefaultImports": true
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user