2022-05-06 18:32:09 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-05-07 05:44:03 +08:00
|
|
|
"target": "es2016",
|
2022-05-06 18:32:09 +08:00
|
|
|
"esModuleInterop": true,
|
2022-05-30 17:09:13 +08:00
|
|
|
"module": "es2020",
|
2022-05-06 18:32:09 +08:00
|
|
|
"moduleResolution": "node",
|
2022-05-07 05:44:03 +08:00
|
|
|
"noEmit": true,
|
2022-05-06 18:32:09 +08:00
|
|
|
"noImplicitAny": false,
|
2022-05-11 01:12:10 +08:00
|
|
|
"noUnusedLocals": true,
|
2022-05-07 05:44:03 +08:00
|
|
|
"jsx": "preserve",
|
2022-09-15 20:29:55 +08:00
|
|
|
"lib": ["es2020", "dom", "dom.iterable"],
|
|
|
|
"strict": false,
|
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"name": "typescript-strict-plugin",
|
|
|
|
"paths": ["src"]
|
|
|
|
}
|
|
|
|
]
|
2022-05-06 18:32:09 +08:00
|
|
|
},
|
2022-10-26 16:47:44 +08:00
|
|
|
"include": [
|
2022-12-10 03:34:25 +08:00
|
|
|
"./src/**/*.ts",
|
2022-10-26 16:47:44 +08:00
|
|
|
"./src/**/*.tsx",
|
|
|
|
"./test/**/*.ts",
|
|
|
|
"./test/**/*.tsx"
|
|
|
|
]
|
2022-05-06 18:32:09 +08:00
|
|
|
}
|