-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
45 lines (44 loc) · 1.14 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
37
38
39
40
41
42
43
44
45
{
"extends": "./.quasar/tsconfig.json",
"compilerOptions": {
"strictNullChecks": false,
"exactOptionalPropertyTypes": false,
"strict": false,
"allowJs": true,
"types": [
"./components.d.ts",
"./auto-imports.d.ts",
"./typed-router.d.ts",
"./src/shims-vue.d.ts",
"./src/env.d.ts",
"vite-plugin-vue-layouts/client"
]
}
// "compilerOptions": {
// "strictNullChecks": true,
// // "baseUrl": ".",
// "moduleResolution": "bundler",
// "strict": false,
// "allowJs": true,
// /* Please ensure that you update the filenames and paths to accurately match those used in your project. */
// "paths": {
// "@/*": ["./src/*"],
// "~/*": ["./src/*"],
// "~~/*": ["./*"]
// },
// "types": ["vite-plugin-vue-layouts/client"]
// },
// "include": [
// "env.d.ts",
// "src/**/*",
// "src/**/*.vue",
// "src/*",
// "components.d.ts",
// "auto-imports.d.ts",
// "typed-router.d.ts",
// "src/shims.d.ts",
// "src/env.d.ts",
// "themes/**/*"
// ],
// "exclude": ["src/**/__tests__/*", "**/node_modules/**", "**/dist/**"]
}