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