2019-12-23 19:48:19 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-03-02 13:52:50 -07:00
|
|
|
"experimentalDecorators": false,
|
|
|
|
"emitDecoratorMetadata": false,
|
2020-04-20 20:14:33 +01:00
|
|
|
"resolveJsonModule": true,
|
2020-04-21 10:01:05 +01:00
|
|
|
"esModuleInterop": true,
|
2019-12-23 19:48:19 -07:00
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"target": "es2016",
|
|
|
|
"noImplicitAny": false,
|
2022-03-09 12:13:37 +00:00
|
|
|
"noUnusedLocals": true,
|
2019-12-23 19:48:19 -07:00
|
|
|
"sourceMap": false,
|
|
|
|
"outDir": "./lib",
|
|
|
|
"declaration": true,
|
2020-03-12 13:37:28 -06:00
|
|
|
"jsx": "react",
|
2023-03-08 16:38:56 +00:00
|
|
|
"lib": ["es2019", "dom", "dom.iterable"],
|
|
|
|
"alwaysStrict": true,
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
"noImplicitThis": true
|
2019-12-23 19:48:19 -07:00
|
|
|
},
|
2022-10-13 09:22:34 +01:00
|
|
|
"include": ["./src/**/*.ts", "./src/**/*.tsx", "./test/**/*.ts", "./test/**/*.tsx"]
|
2019-12-23 19:48:19 -07:00
|
|
|
}
|