mirror of
https://github.com/flarum/framework.git
synced 2025-04-24 21:54:04 +08:00
24 lines
385 B
JSON
24 lines
385 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist/",
|
|
"sourceMap": true,
|
|
"noImplicitAny": false,
|
|
"module": "commonjs",
|
|
"target": "es5",
|
|
"jsx": "react",
|
|
"jsxFactory": "m",
|
|
"declaration": true,
|
|
"lib": ["dom", "es2015"],
|
|
"types": [
|
|
"mithril",
|
|
"classnames"
|
|
]
|
|
},
|
|
"include": [
|
|
"./src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|