2019-12-12 21:35:28 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
2020-04-20 18:00:54 +00:00
|
|
|
"resolveJsonModule": true,
|
2019-12-12 21:35:28 +00:00
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"target": "es2016",
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"sourceMap": false,
|
|
|
|
"outDir": "./lib",
|
|
|
|
"declaration": true,
|
2020-03-12 19:36:02 +00:00
|
|
|
"jsx": "react",
|
2019-12-12 21:35:28 +00:00
|
|
|
"types": [
|
2020-03-11 23:47:18 +00:00
|
|
|
"node",
|
|
|
|
"react"
|
2019-12-12 21:35:28 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"include": [
|
2020-03-12 00:17:35 +00:00
|
|
|
"./src/**/*.ts",
|
|
|
|
"./src/**/*.tsx"
|
2019-12-12 21:35:28 +00:00
|
|
|
]
|
|
|
|
}
|