forked from chibivue-land/chibivue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 782 Bytes
/
tsconfig.json
File metadata and controls
26 lines (26 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"compilerOptions": {
"baseUrl": ".",
"outDir": "temp",
"target": "ESNext",
"module": "ESNext",
"lib": ["DOM"],
"strict": true,
"paths": {
"@chibivue/*": ["./packages/*/src"],
"chibivue": ["./packages/chibivue/src"],
// extensions
"chibivue-store": ["./packages/@extensions/chibivue-store/src"],
"chibivue-router": ["./packages/@extensions/chibivue-router/src"],
"vite-plugin-chibivue": [
"./packages/@extensions/vite-plugin-chibivue/src"
]
},
"types": ["vitest/importMeta"],
"moduleResolution": "Bundler",
"allowJs": true,
"esModuleInterop": true
},
"include": ["packages/**/*.ts", "examples/**/**.ts", "examples/**/**.vue"],
"exclude": ["./**/node_modules", "./**/dist"]
}