forked from codex-team/notes.web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (30 loc) · 907 Bytes
/
tsconfig.json
File metadata and controls
30 lines (30 loc) · 907 Bytes
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
{
"compilerOptions": {
"strict": true,
"types": ["vite/client"],
"target": "ES2022",
"baseUrl": "./src",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
"moduleResolution": "node",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "preserve",
"allowSyntheticDefaultImports": true,
"paths": {
"@/infrastructure/*": ["infrastructure/*"],
"@/infrastructure": ["infrastructure"],
"@/presentation/*": ["presentation/*"],
"@/presentation": ["presentation"],
"@/domain/*": ["domain/*"],
"@/domain": ["domain"],
"@/application/*": ["application/*"],
"@/application": ["application"],
"@codexteam/ui/vue": ["../@codexteam/ui/dist/types/vue/index.d.ts"]
}
},
}