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