forked from vuesion/vuesion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
43 lines (43 loc) · 1.09 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
{
"compilerOptions": {
"target": "es2018",
"module": "esnext",
"moduleResolution": "node",
"lib": ["esnext", "esnext.asynciterable", "dom"],
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
"rootDirs": ["src"],
"types": [
"@nuxt/types",
"@nuxtjs/apollo",
"@nuxtjs/auth-next",
"@nuxtjs/axios",
"@nuxtjs/composition-api",
"@nuxtjs/pwa",
"@nuxtjs/color-mode",
"animejs",
"cookie-parser",
"compression",
"cypress",
"express",
"jest",
"helmet",
"lodash",
"node",
"nuxt-i18n",
"nuxt-winston-log",
"testing-library__jest-dom"
]
},
"include": ["./src/**/*", "./src/**/*.vue"],
"exclude": ["node_modules", ".nuxt", "src/interfaces/graphql/types.ts", "src/interfaces/swagger.ts"],
"files": ["src/vue-shim.d.ts", "src/custom-typings.d.ts", "src/vue.plugins.d.ts"]
}