Files
csf-web/jsconfig.json
2025-09-20 18:42:04 +02:00

34 líneas
646 B
JSON

{
"compilerOptions": {
"module": "esnext",
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"allowJs": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@/components/*": ["./src/components/*"],
"@/lib/*": ["./src/lib/*"],
"@/hooks/*": ["./src/hooks/*"],
"@/store/*": ["./src/store/*"],
"@/types/*": ["./src/types/*"]
},
"plugins": [
{
"name": "next"
}
]
},
"include": [
"next-env.d.js",
".next/types/**/*.js",
"**/*.js",
"**/*.jsx",
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules"
]
}