-
-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathtsconfig.node.json
More file actions
27 lines (27 loc) · 644 Bytes
/
tsconfig.node.json
File metadata and controls
27 lines (27 loc) · 644 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
{
"compilerOptions": {
"forceConsistentCasingInFileNames": true,
"strict": true,
"incremental": true,
"composite": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"paths": {
"@/*": ["./src/*"],
"~/*": ["./src/*"],
"src/*": ["./src/*"],
"@assets/*": ["./src/assets/*"]
},
"resolveJsonModule": true,
"types": ["unplugin-icons/types/vue", "chrome-types", "@intlify/unplugin-vue-i18n/messages"],
"allowSyntheticDefaultImports": true,
"esModuleInterop": true
},
"include": [
"package.json",
"vite.config.ts",
"vite.firefox.config.ts",
"manifest.config.ts",
"manifest.firefox.config.ts"
]
}