riseup-squad20/tsconfig.json
M-Gabrielly b0ab1e86ca refactor(core): Restructure the projectfor feature-sliced architecture feature-sliced
- Move components, hooks, and types to their respective directories in /features.
  - Update all imports to reflect the new structure.
  - Fixes the path alias in tsconfig and removes legacy files.
2025-10-07 17:23:02 -03:00

35 lines
657 B
JSON

{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"baseUrl": ".",
"allowJs": true,
"target": "ES6",
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*"]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"lib/api.js"
],
"exclude": ["node_modules"]
}