-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
36 lines (36 loc) · 1.05 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
34
35
36
{
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
// A few notes:
// - Vue 3 supports ES2016+
// - For Vite, the actual compilation target is determined by the
// `build.target` option in the Vite config.
// So don't change the `target` field here. It has to be
// at least `ES2020` for dynamic `import()`s and `import.meta` to work correctly.
"target": "ESNext",
"lib": ["DOM", "ESNext"],
"strict": true,
"verbatimModuleSyntax": true,
// Recommended
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
// Required in Vue projects
"jsx": "preserve",
// See <https://github.com/vuejs/vue-cli/pull/5688>
"skipLibCheck": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"allowJs": true,
"types": [
"vite/client",
"vue/ref-macros"
],
"paths": {
"@/*": ["resources/scripts/*"]
}
},
"exclude": ["dist", "public/**/*", "node_modules", "vendor", "cypress"]
}