2019-12-12 21:35:28 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-03-02 20:49:44 +00:00
|
|
|
"experimentalDecorators": false,
|
|
|
|
"emitDecoratorMetadata": false,
|
2020-04-20 18:00:54 +00:00
|
|
|
"resolveJsonModule": true,
|
2020-04-21 09:01:05 +00:00
|
|
|
"esModuleInterop": true,
|
2019-12-12 21:35:28 +00:00
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"target": "es2016",
|
|
|
|
"noImplicitAny": false,
|
2022-03-09 12:05:16 +00:00
|
|
|
"noUnusedLocals": true,
|
2019-12-12 21:35:28 +00:00
|
|
|
"sourceMap": false,
|
|
|
|
"outDir": "./lib",
|
|
|
|
"declaration": true,
|
2020-03-12 19:36:02 +00:00
|
|
|
"jsx": "react",
|
2020-08-17 17:20:57 +00:00
|
|
|
"lib": [
|
2021-12-09 08:51:05 +00:00
|
|
|
"es2020",
|
2020-08-17 17:20:57 +00:00
|
|
|
"dom",
|
|
|
|
"dom.iterable"
|
2021-08-03 10:55:02 +00:00
|
|
|
],
|
2019-12-12 21:35:28 +00:00
|
|
|
},
|
|
|
|
"include": [
|
2020-03-12 00:17:35 +00:00
|
|
|
"./src/**/*.ts",
|
2022-03-21 09:03:03 +00:00
|
|
|
"./src/**/*.tsx",
|
2022-03-23 10:27:28 +00:00
|
|
|
"./test/**/*.ts",
|
|
|
|
"./test/**/*.tsx",
|
2021-08-06 15:03:12 +00:00
|
|
|
],
|
2022-03-18 10:07:33 +00:00
|
|
|
"exclude": [
|
|
|
|
"./test/end-to-end-tests/"
|
|
|
|
]
|
2019-12-12 21:35:28 +00:00
|
|
|
}
|