-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtsconfig.json
66 lines (66 loc) · 1.89 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"compilerOptions": {
"target": "ES2019",
"module": "esnext",
"moduleResolution": "node",
"lib": ["esnext", "dom", "es2017", "es2017.object", "webworker", "webworker.importscripts"],
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": false,
"noImplicitAny": true,
"noUnusedLocals": false,
"pretty": true,
"sourceMap": true,
"importHelpers": true,
"noUnusedParameters": false,
"jsx": "preserve",
"downlevelIteration": false,
"suppressImplicitAnyIndexErrors": true,
"skipLibCheck": true,
"noUncheckedIndexedAccess": false,
"noImplicitThis": true,
"strict": true,
"allowJs": true,
"noEmit": true,
"checkJs": false,
"baseUrl": "./src/",
"resolveJsonModule": true,
"paths": {
"@components": ["components/index.ts"],
"@components/*": ["components/*"],
"@global": ["components/Global/index.ts"],
"@store": ["vuex-modules/index.ts"],
"@middleware": ["middleware/index.ts"],
"@services": ["services/index.ts"],
"@assets/*": ["assets/*"],
"@images/*": ["assets/images/*"],
"@icons/*": ["assets/icons/*"],
"@constructors": ["constructors/index.ts"],
"@decorators": ["decorators/index.ts"],
"@mixins": ["mixins/index.ts"],
"@colors": ["styles/colors.module.js"],
"@utils": ["utils/index.ts"],
"@constants": ["constants/index.ts"],
"@data": ["data/index.ts"],
"@models": ["models/index.ts"],
"@locales": ["locales/index.ts"]
},
"types": [
"@nuxt/types",
"nuxt-typed-router",
"node",
"webpack-env",
"nuxt-i18n",
"@nuxtjs/google-analytics"
]
},
"include": [
"./src/**/*.ts",
"__tests__/**/*.ts",
"./src/**/*.js",
"./src/**/*.vue",
"./config/**/*.ts"
],
"files": ["nuxt.config.ts"],
"exclude": ["node_modules", "dist", ".nuxt"]
}