-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
47 lines (47 loc) · 930 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
41
42
43
44
45
46
47
{
"compilerOptions": {
"jsx": "preserve",
"declaration": true,
"target": "ES2019",
"module": "ES2020",
"moduleResolution": "node",
"lib": [
"ES2019",
"DOM"
],
"esModuleInterop": true,
"allowJs": true,
"sourceMap": true,
"strict": false,
"noImplicitThis": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"~/*": [
"./*"
],
"@/*": [
"./*"
]
},
"types": [
"node",
"@pinia/nuxt",
"@nuxt/types",
"cookie-universal-nuxt",
"nuxt-i18n",
"@nuxt/image",
"jest"
],
"typeRoots": ["../../node_modules/@types", "./node_modules/@types"],
"resolveJsonModule": true,
"rootDir": "./",
"declarationDir": "./lib",
"importHelpers": true,
"allowSyntheticDefaultImports": true
},
"vueCompilerOptions": {
"target": 2
},
"exclude": ["tests/e2e/**"]
}