Files
dyolink/frontend/tsconfig.json

43 lines
883 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "ES2017",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": [
"./src/*"
] // 👈 CHANGED: Now points to src folder
}
},
"include": [
"next-env.d.ts",
"src/**/*.ts", // 👈 CHANGED: Looks in src folder
"src/**/*.tsx", // 👈 CHANGED: Looks in src folder
"src/**/*.mts", // 👈 CHANGED: Looks in src folder
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}