-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
jsconfig.json
17 lines (17 loc) · 837 Bytes
/
jsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"compilerOptions": {
"target": "es6", // Specify the ECMAScript version to target
"moduleResolution": "node", // Specify the module resolution strategy
"baseUrl": "./", // Base URL for module resolution
"paths": {
"@/*": ["src/*"], // Define path aliases for the source directory
"@P/*": ["src/pages/*"], // Alias for the pages directory
"@U/*": ["src/utils/*"], // Alias for the utils directory
"@S/*": ["src/stores/*"], // Alias for the stores directory
"@M/*": ["src/modules/*"], // Alias for the modules directory
"@C/*": ["src/composables/*"] // Alias for the composables directory
},
"lib": ["esnext", "dom", "dom.iterable", "scripthost"] // Specify the library files to include
},
"exclude": ["node_modules", "dist"] // Directories to exclude from compilation
}