Files
home-auto/tsconfig.json
abearxiong 7faad04859 feat: initialize simple-bun project with Vite and Lit template
- Add README.md with project description and CLI commands
- Create app.ts with initial import from @kevisual/router
- Set up tsconfig.json with custom compiler options and paths
2025-12-22 23:48:20 +08:00

24 lines
420 B
JSON

{
"extends": "@kevisual/types/json/backend.json",
"compilerOptions": {
"module": "NodeNext",
"target": "esnext",
"baseUrl": ".",
"typeRoots": [
"./node_modules/@types",
"./node_modules/@kevisual/types/index.d.ts"
],
"paths": {
"@/*": [
"src/*"
],
"@agent/*": [
"agent/*"
]
},
},
"include": [
"src/**/*",
"agent/**/*",
],
}