2019-12-24 03:48:19 +01:00
|
|
|
{
|
2022-12-09 13:28:29 +01:00
|
|
|
"compilerOptions": {
|
|
|
|
"experimentalDecorators": false,
|
|
|
|
"emitDecoratorMetadata": false,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"target": "es2016",
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"sourceMap": false,
|
|
|
|
"outDir": "./lib",
|
|
|
|
"declaration": true,
|
|
|
|
"jsx": "react",
|
|
|
|
"lib": ["es2019", "dom", "dom.iterable"]
|
|
|
|
},
|
|
|
|
"include": ["./src/**/*.ts", "./src/**/*.tsx", "./test/**/*.ts", "./test/**/*.tsx"]
|
2019-12-24 03:48:19 +01:00
|
|
|
}
|