2019-12-12 22:35:28 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-03-02 21:49:44 +01:00
|
|
|
"experimentalDecorators": false,
|
|
|
|
"emitDecoratorMetadata": false,
|
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,
|
2022-03-09 13:05:16 +01:00
|
|
|
"noUnusedLocals": true,
|
2019-12-12 22:35:28 +01:00
|
|
|
"sourceMap": false,
|
|
|
|
"outDir": "./lib",
|
|
|
|
"declaration": true,
|
2020-03-12 20:36:02 +01:00
|
|
|
"jsx": "react",
|
2020-08-17 19:20:57 +02:00
|
|
|
"lib": [
|
2021-12-09 09:51:05 +01:00
|
|
|
"es2020",
|
2020-08-17 19:20:57 +02:00
|
|
|
"dom",
|
|
|
|
"dom.iterable"
|
2021-08-03 12:55:02 +02:00
|
|
|
],
|
2019-12-12 22:35:28 +01:00
|
|
|
},
|
|
|
|
"include": [
|
2020-03-12 01:17:35 +01:00
|
|
|
"./src/**/*.ts",
|
2022-03-21 10:03:03 +01:00
|
|
|
"./src/**/*.tsx",
|
2022-03-23 11:27:28 +01:00
|
|
|
"./test/**/*.ts",
|
|
|
|
"./test/**/*.tsx",
|
2021-08-06 17:03:12 +02:00
|
|
|
],
|
2022-03-18 11:07:33 +01:00
|
|
|
"exclude": [
|
|
|
|
"./test/end-to-end-tests/"
|
|
|
|
]
|
2019-12-12 22:35:28 +01:00
|
|
|
}
|