24 lines
No EOL
616 B
JSON
24 lines
No EOL
616 B
JSON
{
|
|
"extends": "flarum-tsconfig",
|
|
"compilerOptions": {
|
|
"module": "ES2020",
|
|
"moduleResolution": "Node",
|
|
"target": "ES6",
|
|
"sourceMap": true,
|
|
"allowJs": true,
|
|
"jsx": "react",
|
|
"jsxFactory": "m",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"declarationDir": "./dist-typings",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"flarum/*": ["../vendor/flarum/core/js/dist-typings/*"]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/node_modules"
|
|
],
|
|
"include": ["src/**/*", "../vendor/flarum/core/js/dist-typings/@types/**/*"]
|
|
} |