Skip to content

Commit

Permalink
tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
vvaldesc committed Jun 16, 2024
1 parent 366078b commit 0c6b5e0
Showing 1 changed file with 12 additions and 29 deletions.
41 changes: 12 additions & 29 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,37 +3,20 @@
"compilerOptions": {
"baseUrl": ".",
"esModuleInterop": true,
"paths": {
"@/*": [
"./src/*"
],
"@/components/*": [
"./src/components/*"
],
"@/layouts/*": [
"./src/layouts/*"
],
"@/pages/*": [
"./src/pages/*"
],
"@/services/*": [
"./src/services/*"
],
"@/sections/*": [
"./src/sections/*"
],
"@/consts/*": [
"./src/consts/*"
],
"@/public/*": [
"./public/*"
],
"@/styles/*": [
"./src/styles/*"
]
"paths": {
"@/*": ["./src/*"],
"@/components/*": ["./src/components/*"],
"@/layouts/*": ["./src/layouts/*"],
"@/pages/*": ["./src/pages/*"],
"@/services/*": ["./src/services/*"],
"@/sections/*": ["./src/sections/*"],
"@/consts/*": ["./src/consts/*"],
"@/public/*": ["./public/*"],
"@/styles/*": ["./src/styles/*"]
},
"jsx": "react-jsx",
"jsxImportSource": "react",
"strict": false
"strict": false,
"types": ["react"] // Añade esta línea
}
}

0 comments on commit 0c6b5e0

Please sign in to comment.