-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
31 lines (31 loc) · 993 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
{
"compilerOptions": {
"paths": {
"@components/Layout": ["src/components/Layout/index.ts"],
"@components/Modal": ["src/components/Modal/index.ts"],
"@components/Files": ["src/components/Files/index.ts"],
"@stores": ["src/stores/index.ts"],
"@lib/*": ["src/lib/*"],
"@types": ["src/shared/types.tsypes.ts"],
"@utils": ["src/shared/utils.ts"]
},
"baseUrl": ".",
"target": "esnext",
"useDefineForClassFields": true,
"module": "esnext",
"moduleResolution": "node",
"strict": true,
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"lib": ["esnext", "dom"],
"skipLibCheck": true,
"allowJs": true
},
"include": ["src/**/*.ts", "src/**/*.js", "src/**/*.d.ts", "src/**/*.vue"],
"references": [{ "path": "./tsconfig.node.json" }],
"exclude": ["node_modules", "dist", "public"]
}