Files
plugin-s3/console/tsconfig.json
Ryan Wang 2562e6afc5 Migrate to Rsbuild, update dependencies and configs (#204)
* Migrate to Rsbuild, update dependencies and configs

* Normalize quotes in pnpm-lock.yaml

Updated the pnpm-lock.yaml file to use single quotes for all package names and string values, improving consistency in the lockfile formatting. No dependency versions were changed.

* Migrate ESLint config to flat config and update deps

* Update pnpm-lock.yaml

Signed-off-by: Ryan Wang <i@ryanc.cc>

---------

Signed-off-by: Ryan Wang <i@ryanc.cc>
2025-12-29 17:08:11 +08:00

14 lines
311 B
JSON

{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"include": ["./env.d.ts", "./src/**/*", "./src/**/*.vue"],
"exclude": ["./src/**/__tests__/*"],
"compilerOptions": {
"composite": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"types": ["unplugin-icons/types/vue"]
}
}