SurfSense/apps/web/tsconfig.json

19 lines
297 B
JSON
Raw Normal View History

2024-07-30 16:00:11 -07:00
{
"extends": "@repo/typescript-config/nextjs.json",
"compilerOptions": {
"plugins": [
{
"name": "next"
}
]
2024-07-30 16:00:11 -07:00
},
"include": [
"next-env.d.ts",
"next.config.mjs",
2024-07-30 16:00:11 -07:00
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
"exclude": ["node_modules"]
}