2023-12-16 09:28:19 +08:00
|
|
|
{
|
|
|
|
"extends": "../../tsconfig.json",
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ESNext",
|
|
|
|
"module": "ESNext",
|
2024-03-17 08:08:43 +08:00
|
|
|
"moduleResolution": "Bundler",
|
2023-12-16 09:28:19 +08:00
|
|
|
"rootDir": "./",
|
|
|
|
"outDir": "./dist",
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
"jsxImportSource": "react"
|
|
|
|
},
|
|
|
|
"include": [
|
2024-03-17 08:08:43 +08:00
|
|
|
"vitest.config.ts",
|
2023-12-16 09:28:19 +08:00
|
|
|
"src/**/*.ts",
|
|
|
|
"test/**/*.tsx",
|
|
|
|
],
|
|
|
|
}
|