2019-12-23 19:48:19 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
2020-04-20 20:14:33 +01:00
|
|
|
"resolveJsonModule": true,
|
2019-12-23 19:48:19 -07:00
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"target": "es2016",
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"sourceMap": false,
|
|
|
|
"outDir": "./lib",
|
|
|
|
"declaration": true,
|
2020-03-12 13:37:28 -06:00
|
|
|
"jsx": "react",
|
2019-12-23 19:48:19 -07:00
|
|
|
"types": [
|
2020-03-11 18:19:03 -06:00
|
|
|
"node",
|
|
|
|
"react"
|
2019-12-23 19:48:19 -07:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"include": [
|
2020-03-11 18:19:03 -06:00
|
|
|
"./src/**/*.ts",
|
|
|
|
"./src/**/*.tsx"
|
2019-12-23 19:48:19 -07:00
|
|
|
]
|
|
|
|
}
|