mirror of
https://github.com/flarum/framework.git
synced 2024-11-25 09:41:49 +08:00
6040aa0da9
See: https://stackoverflow.com/a/54746036/11091039 We use `Promise.finally` in core, but the `tsconfig.json` doesn't list it as supported.
23 lines
572 B
JSON
23 lines
572 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowUmdGlobalAccess": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"module": "es2015",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "Node",
|
|
"target": "es6",
|
|
"jsx": "preserve",
|
|
"allowJs": true,
|
|
"lib": ["es2015", "es2017", "dom", "es2018.promise"],
|
|
"allowSyntheticDefaultImports": true
|
|
}
|
|
}
|