-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathtsconfig.json
47 lines (45 loc) · 1.25 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
{
"compilerOptions": {
"baseUrl": "./src",
// Указывает на формат транспиляции импортов
"module": "es2022",
// Указывает, какие фичи будут отражены в типах
"target": "es2023",
"moduleResolution": "bundler",
"jsx": "preserve",
"jsxImportSource": "vue",
"types": ["vite/client", "user-agent-data-types"],
"allowSyntheticDefaultImports": true,
"noUncheckedIndexedAccess": true,
"noUncheckedSideEffectImports": true,
"skipLibCheck": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"isolatedModules": true,
"sourceMap": true,
"strict": true,
"paths": {
"main-process/*": ["../main-process/*"],
"actions/*": ["./actions/*"],
"assets/*": ["./assets/*"],
"converters/*": ["./converters/*"],
"env/*": ["./env/*"],
"hooks/*": ["./hooks/*"],
"lang/*": ["./lang/*"],
"misc/*": ["./misc/*"],
"model/*": ["./model/*"],
"store/*": ["./store/*"],
"ui/*": ["./ui/*"]
}
},
"include": [
"src/**/*",
"main-process/**/*",
"scripts/*",
"build/*",
".eslintrc.js",
".eslintrc.full.js",
"vite.config.mts"
],
"exclude": ["node_modules"]
}