-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
86 lines (86 loc) · 2.31 KB
/
tsconfig.json
File metadata and controls
86 lines (86 loc) · 2.31 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
// https://nuxt.com/docs/guide/concepts/typescript
"extends": "./.nuxt/tsconfig.json",
"compilerOptions": {
"noEmit": true,
"target": "esnext",
"module": "esnext",
"strict": true,
"allowJs": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"allowImportingTsExtensions": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"esModuleInterop": true,
"noImplicitThis": false,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"sourceMap": true,
"baseUrl": ".",
"types": [
"webpack-env",
"google.maps",
"luxon",
"markdown-it",
"node",
"vite/client",
"@nuxtjs/tailwindcss",
"@nuxt/types",
"@types/node",
"@nuxt/components",
"@nuxt/schema"
],
"paths": {
"@/*": ["./*"],
"@/cache": ["./cache.ts"],
"@/config": ["./config.ts"],
"@/composables/*": ["./composables/*"],
"@/components/*": ["./components/*"],
"@/graphQLData/*": ["./graphQLData/*"],
"#app": ["./.nuxt/types/app/index.d.ts"],
"#app/*": ["./.nuxt/types/app/*"],
"#build/*": ["./.nuxt/types/build/*"],
"#imports": ["./.nuxt/types/imports.d.ts"],
"#imports/*": ["./.nuxt/types/imports/*"],
"~~/*": ["./*"],
"@@/*": ["./*"],
"~/*": ["./*"],
"components/*": ["./components/*"],
"layouts/*": ["./layouts/*"]
},
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
},
"include": [
".nuxt/**/*.ts",
"src/**/*.ts",
"src/**/.d.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx",
"src/main.ts",
"cypress/**/*.ts",
"cypress/support/e2e.ts",
"types/**/*.d.ts",
"components/**/*.vue",
"composables/**/*.ts",
"pages/**/*.vue",
"layouts/**/*.vue",
"config.ts",
"types/Channel.ts",
"types/Comment.ts",
"types/Discussion.ts",
"types/Event.ts",
"types/Tag.ts",
"types/User.ts",
"types/GenericFormTypes.ts",
"cache.ts",
".nuxt/nuxt.d.ts",
"components/event/list/filters/getEventFilterValuesFromParams.spec.ts",
"components/discussion/list/getDiscussionFilterValuesFromParams.spec.ts",
"components/event/map/Map.spec.ts"
],
"exclude": ["node_modules", ".nuxt", "dist", "cypress/**/*"]
}