mirror of
https://github.com/flarum/framework.git
synced 2024-11-25 07:38:01 +08:00
22 lines
544 B
JSON
22 lines
544 B
JSON
{
|
|
"include": ["src/**/*.ts", "src/**/*.tsx"],
|
|
"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
|
|
}
|
|
}
|