-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.app.json
110 lines (110 loc) · 3.16 KB
/
tsconfig.app.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"include": [
"src/**/*",
"tests/**/*",
"playwright-tests/**/*",
"vite.config.ts",
"jest.config.ts",
"vitest.config.ts",
"jest.setup.ts",
"nightwatch.conf.js",
"playwright-tests/playwright.config.ts",
"playwright.config.ts",
"env.d.ts",
"src/shims-vue.d.ts",
"src/typings",
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.js",
"src/**/*.vue",
"src/**/*.svg",
"src/**/*.png",
"src/**/*.jpg",
"src/**/*.jpeg",
"src/**/*.gif",
"src/**/*.css",
"src/**/*.html",
"src/**/*.md",
"src/**/*.json",
"src/**/*.d.ts",
"src/**/*.yaml",
"src/**/*.yml",
"src/**/*.csv",
"src/**/*.tsbuildinfo",
"src/**/*.map",
"src/types/ElementData.ts",
"src/components/PeriodicTable.vue",
"tests/**/*.ts",
"tests/**/*.tsx",
"tests/**/*.js",
"tests/**/*.vue",
"tests.spec.ts",
"playwright-tests/**/*.ts",
"playwright.config.ts",
"vite.config.ts",
"vitest.config.ts",
"jest.config.ts",
"nightwatch.conf.js",
"playwright-tests/playwright.config.ts",
".eslintrc.cjs",
".eslintrc.js",
".eslintrc.json",
".eslintrc.yaml",
".eslintrc.yml",
".eslintrc",
".eslintignore",
".prettierrc",
".prettierrc.cjs",
"src/**/*.vue"
],
"exclude": ["node_modules", "dist", "public", "src/**/*.spec.ts"],
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"allowJs": true,
"strict": true,
"incremental": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"isolatedModules": true,
"moduleResolution": "node",
"jsx": "preserve",
"sourceMap": true,
"composite": true,
"noEmit": true, // Set this to true to prevent TypeScript from emitting JavaScript files
"outDir": "./dist", // Specify the directory where JavaScript files will be outputted
"tsBuildInfoFile": "./tmp/tsconfig.app.tsbuildinfo",
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@/components/*": ["./src/components/*.vue"],
"@App/*": ["src/*"],
"@App/components/*": ["./src/components/*.vue"],
"@App/views/*": ["./src/views/*.vue"],
"@App/assets/*": ["./src/assets/*"],
"@App/store/*": ["./src/store/*.ts"],
"@App/router/*": ["./src/router/*.ts"],
"@App/types/*": ["./src/types/*.ts"],
"@App/utils/*": ["./src/utils/*.ts"],
"@App/services/*": ["./src/services/*.ts"],
"@App/hooks/*": ["./src/hooks/*.ts"],
"@App/mocks/*": ["./src/mocks/*.ts"],
"@App/typings/*": ["./src/typings/*.ts"],
"@App/tests/*": ["./tests/*.ts"],
"@App/playwright-tests/*": ["./playwright-tests/*.ts"],
"@App/cypress/*": ["./cypress/*.ts"],
"@App/jest/*": ["./jest/*.ts"],
"@App/nightwatch/*": ["./nightwatch/*.ts"],
"@App/vite/*": ["./vite/*.ts"],
"@App/vitest/*": ["./vitest/*.ts"],
"@App/env/*": ["./env/*.ts"],
"@App/shims/*": ["./src/shims/*.ts"]
},
"lib": ["esnext", "dom"],
"types": ["node", "jest", "vue", "playwright", "@vue/test-utils"]
}
}