-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
27 lines (27 loc) · 873 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
{
"compilerOptions": {
"target": "ES2020",
"lib": ["DOM", "ES2020"],
"module": "ESNext",
"jsx": "react-jsx",
"noEmit": true,
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true,
"isolatedModules": true,
"resolveJsonModule": true,
"moduleResolution": "bundler",
"useDefineForClassFields": true,
"allowImportingTsExtensions": true,
"baseUrl": "./src", // Establece la base de las rutas relativas como la raíz del proyecto
"paths": {
"@/*": ["./*"],
"@tabla-simple/*": ["./examples/tabla-simple/*"],
"@tabla-compleja/*": ["./examples/tabla-compleja/*"],
"@form-dinamico-back/*": ["./examples/form-dinamico-back/*"],
"@form-dinamico-estatico/*": ["./examples/form-dinamico-estatico/*"],
"@form-simple/*": ["./examples/form-simple/*"]
}
},
"include": ["src"]
}