{
	"extends": "tsconfig/nextjs.json",
	"compilerOptions": {
		"moduleResolution": "Bundler",
		"allowImportingTsExtensions": true,
		"noErrorTruncation": true,
		"allowSyntheticDefaultImports": true,
		// next just straight up does not let you not use their stupid plugin
		// see docs/development/common-issues.mdx for more
		"plugins": [
			{
				"name": "next"
			}
		],
		"baseUrl": ".",
		"paths": {
			"~/*": ["./*"]
		},
		"strictNullChecks": true,
		"tsBuildInfoFile": "node_modules/.cache/tsbuildinfo.json"
	},
	"include": [
		"next-env.d.ts",
		"**/*.ts",
		"**/*.tsx",
		".next/types/**/*.ts",
		"instrumentation.node.mts",
		"cache-handler.js",
		"prisma/generate-history-table.mts",
		"prisma/seed.cts",
		"prisma/scripts/comment-generator.mts",
		"prisma/seed/stubs/*.js",
		"lib/server/vitest.d.ts",
		".storybook/**/*.ts",
		".storybook/**/*.tsx"
	],
	"exclude": ["node_modules", ".next/types/**/*.ts"]
}
