mirror of
https://github.com/flarum/framework.git
synced 2024-11-25 00:43:54 +08:00
22 lines
528 B
JSON
22 lines
528 B
JSON
|
{
|
||
|
"include": ["src/**/*.ts"],
|
||
|
"files": ["shims.d.ts"],
|
||
|
"compilerOptions": {
|
||
|
"allowUmdGlobalAccess": true,
|
||
|
"outDir": "dist",
|
||
|
"sourceMap": true,
|
||
|
"strict": true,
|
||
|
"noImplicitReturns": false,
|
||
|
"noImplicitAny": false,
|
||
|
"module": "es2015",
|
||
|
"emitDecoratorMetadata": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"esModuleInterop": true,
|
||
|
"moduleResolution": "node",
|
||
|
"target": "es6",
|
||
|
"jsx": "preserve",
|
||
|
"lib": ["es2015", "es2017", "dom"],
|
||
|
"allowSyntheticDefaultImports": true
|
||
|
}
|
||
|
}
|