-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.app.json
More file actions
32 lines (32 loc) · 966 Bytes
/
tsconfig.app.json
File metadata and controls
32 lines (32 loc) · 966 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
29
30
31
32
{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"include": ["types/**/*", "src/**/*", "src/config.json"],
"exclude": ["src/**/__tests__/*"],
"compilerOptions": {
"composite": true,
"target": "esnext",
"useDefineForClassFields": true,
"module": "esnext",
"moduleResolution": "bundler",
"noImplicitThis": true,
"strict": true,
"jsx": "preserve",
"jsxImportSource": "vue",
"verbatimModuleSyntax": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"isolatedModules": true,
"sourceMap": true,
"resolveJsonModule": true,
"baseUrl": ".",
"newLine": "lf",
"lib": ["esnext", "dom"],
"types": ["vite/client"],
"paths": {
"@src/*": ["src/*"],
"@/*": ["src/*"]
}
}
}