Files
plugin-starter/console/tsconfig.app.json
Ryan Wang d4c6584435 perf: refine example page (#7)
完善 Console 端的示例页面,引导开发者查阅下一步的文档。

/kind improvement

<img width="1693" alt="image" src="https://user-images.githubusercontent.com/21301288/217480424-d53fdc3e-56e8-4157-8daf-decd86ae5094.png">

```release-note
None
```
2023-02-09 02:26:13 +00:00

14 lines
311 B
JSON

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