forked from codex-team/notes.web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
30 lines (30 loc) · 874 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
{
"compilerOptions": {
"strict": true,
"types": ["vite/client"],
"target": "ES2020",
"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"],
}
},
"include": ["src", "vite.config.ts"],
}