SurfSense/apps/web/tsconfig.json
2024-07-30 16:00:11 -07:00

25 lines
456 B
JSON

{
"extends": "@repo/typescript-config/nextjs.json",
"compilerOptions": {
"sourceMap": true,
"plugins": [
{
"name": "next"
}
],
"baseUrl": ".",
"paths": {
"@/*": ["./*"],
"@/components/*": ["./components/*"],
"@/lib/*": ["./lib/*"]
}
},
"include": [
"next-env.d.ts",
"next.config.js",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
"exclude": ["node_modules"]
}