-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
33 lines (33 loc) · 1.06 KB
/
tsconfig.json
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
29
30
31
32
33
{
"compilerOptions": {
"module": "Node16",
"target": "ES2022",
"outDir": "out",
"lib": [
"ES2022",
"DOM" /* Include DOM support for browser-based APIs */
],
"sourceMap": true,
"rootDir": "src",
"strict": true, /* Enable all strict type-checking options */
"esModuleInterop": true, /* Allow compatibility with CommonJS and ES Modules */
"skipLibCheck": true, /* Skip type checking for declaration files for faster builds */
"resolveJsonModule": true, /* Support importing JSON files as modules */
"noImplicitAny": true, /* Warn on variables with implicit any type */
"moduleResolution": "Node16", /* Use Node.js module resolution */
"allowSyntheticDefaultImports": true, /* Allow default imports from modules without default exports */
"types": ["node", "vscode"], /* Include types for Node.js and VS Code */
"jsx": "preserve", /* Needed if you're using JSX in Vue */
"paths": {
"@/*": ["./src/*"] /* Alias for cleaner imports */
}
},
"include": [
"src/**/*.ts",
"src/**/*.vue"
],
"exclude": [
"node_modules",
".vscode-test"
]
}