-
-
Notifications
You must be signed in to change notification settings - Fork 363
/
tsconfig.json
40 lines (40 loc) · 991 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
34
35
36
37
38
39
40
{
"extends": "./.nuxt/tsconfig.json",
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Node",
"lib": ["ESNext", "ESNext.AsyncIterable", "DOM"],
"jsx": "preserve",
"esModuleInterop": true,
"allowJs": true,
"sourceMap": true,
"strict": true,
"noEmit": true,
"experimentalDecorators": true,
"noImplicitAny": false,
"resolveJsonModule": true,
"verbatimModuleSyntax": false, // TODO: would be good if true
"types": [
"@nuxt/types",
"@nuxtjs/i18n",
"@nuxtjs/color-mode",
"@types/node",
"vue-apollo",
"vitest/globals"
],
"plugins": [
{
"name": "@0no-co/graphqlsp",
"schemas": [
{
"name": "ahp",
"schema": "https://ahp.gql.api.kodadot.xyz/",
"tadaOutputLocation": "./queries/clients/ahp.d.ts"
}
]
}
]
},
"exclude": ["node_modules", "dist", "**/*.spec.ts"]
}