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