-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
37 lines (32 loc) · 878 Bytes
/
tsconfig.json
File metadata and controls
37 lines (32 loc) · 878 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
31
32
33
34
35
36
37
{
"compilerOptions": {
/* --- Compatibilidad y Entorno --- */
"target": "ES2021",
"module": "CommonJS",
"moduleResolution": "node",
"allowJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
/* --- Nivel de Estrictez --- */
"strict": true,
"skipLibCheck": true,
"ignoreDeprecations": "6.0",
/* --- Rutas y Salida --- */
"baseUrl": ".",
"rootDir": ".",
"outDir": "dist",
"noEmit": true,
"isolatedModules": true,
"resolveJsonModule": true,
/* --- Alias de Rutas (Paths) --- */
"paths": {
"@/*": ["./src/*"],
"@tests/*": ["tests/*"]
},
/* --- Definición de Tipos Globales --- */
"types": ["node", "jest"],
},
/* --- Inclusión y Exclusión de Archivos --- */
"include": ["src/**/*", "tests/**/*"],
"exclude": ["node_modules", "dist"]
}