2019-12-12 14:35:28 -07:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2022-03-02 13:49:44 -07:00
|
|
|
"experimentalDecorators": false,
|
|
|
|
|
"emitDecoratorMetadata": false,
|
2020-04-20 19:00:54 +01:00
|
|
|
"resolveJsonModule": true,
|
2020-04-21 10:01:05 +01:00
|
|
|
"esModuleInterop": true,
|
2019-12-12 14:35:28 -07:00
|
|
|
"module": "commonjs",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"target": "es2016",
|
|
|
|
|
"noImplicitAny": false,
|
2022-03-09 12:05:16 +00:00
|
|
|
"noUnusedLocals": true,
|
2019-12-12 14:35:28 -07:00
|
|
|
"sourceMap": false,
|
|
|
|
|
"outDir": "./lib",
|
|
|
|
|
"declaration": true,
|
2020-03-12 13:36:02 -06:00
|
|
|
"jsx": "react",
|
2020-08-17 18:20:57 +01:00
|
|
|
"lib": [
|
2021-12-09 08:51:05 +00:00
|
|
|
"es2020",
|
2020-08-17 18:20:57 +01:00
|
|
|
"dom",
|
|
|
|
|
"dom.iterable"
|
2021-08-03 11:55:02 +01:00
|
|
|
],
|
2019-12-12 14:35:28 -07:00
|
|
|
},
|
|
|
|
|
"include": [
|
2020-03-11 18:17:35 -06: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 14:35:28 -07:00
|
|
|
}
|