2019-12-13 05:35:28 +08:00
|
|
|
{
|
2022-12-12 19:24:14 +08: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": ["es2020", "dom", "dom.iterable"],
|
|
|
|
"alwaysStrict": true,
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
"noImplicitThis": true
|
|
|
|
},
|
|
|
|
"include": ["./src/**/*.ts", "./src/**/*.tsx", "./test/**/*.ts", "./test/**/*.tsx"]
|
2019-12-13 05:35:28 +08:00
|
|
|
}
|