-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
33 lines (33 loc) · 877 Bytes
/
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": {
"target": "ES2022",
"jsx": "preserve",
"lib": [
"DOM",
"DOM.Iterable",
"ES2022"
],
"baseUrl": ".",
"module": "ESNext",
"moduleResolution": "Bundler",
"paths": {
"@/*": ["./src/*"],
"app/*": ["./"]
},
"resolveJsonModule": true,
"types": ["vitest/globals"],
"allowJs": true,
"strict": true,
"noImplicitThis": true,
"noEmit": true,
"sourceMap": false,
"esModuleInterop": true,
// Avoid cross-os errors due to inconsistent file casing
"forceConsistentCasingInFileNames": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true
},
// Avoid files copied into 'dist' folder (eg. a `.d.ts` file inside `src-ssr` folder)
// to be evaluated by TS when their original files has been updated
"exclude": ["dist", ".quasar", "node_modules"]
}