forked from Fioooooooo/FylloCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.web.json
More file actions
28 lines (28 loc) · 774 Bytes
/
Copy pathtsconfig.web.json
File metadata and controls
28 lines (28 loc) · 774 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
27
28
{
"extends": "@electron-toolkit/tsconfig/tsconfig.web.json",
"include": [
"src/preload/*.d.ts",
"src/renderer/src/*.d.ts",
"src/renderer/src/**/*",
"src/renderer/src/**/*.vue",
"src/renderer/*.d.ts",
"src/shared/**/*",
"test/renderer/src/**/*"
],
"compilerOptions": {
"composite": true,
"rootDir": ".",
"noImplicitAny": true,
"moduleResolution": "Bundler",
"types": ["vitest/globals"],
"paths": {
"@renderer/*": ["./src/renderer/src/*"],
"@shared/*": ["./src/shared/*"],
"@test/*": ["./test/*"],
"#build/ui/*": ["./src/renderer/node_modules/.nuxt-ui/ui/*"]
}
},
"vueCompilerOptions": {
"plugins": ["vue-router/volar/sfc-typed-router", "vue-router/volar/sfc-route-blocks"]
}
}