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