generated from AlbertHernandez/express-typescript-service-template
-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathtsconfig.json
28 lines (28 loc) · 752 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
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"baseUrl": ".",
"module": "esnext",
"target": "esnext",
"moduleResolution": "Bundler",
"esModuleInterop": true,
"strict": true,
"outDir": "dist",
"sourceMap": true,
"inlineSources": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"paths": {
"@/src/*": ["src/*"],
"@/app/*": ["src/app/*"],
"@/contexts/*": ["src/contexts/*"],
"@/shared/*": ["src/contexts/shared/*"],
"@/tests/*": ["tests/*"]
},
"types": ["vitest/globals"]
},
"exclude": ["node_modules", "dist"]
}