aboutsummaryrefslogtreecommitdiff
path: root/apps/web/tsconfig.json
blob: bdd64662104a09d2731ea601bd5e524476acc8fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
	"compilerOptions": {
		"incremental": true,
		"jsx": "preserve",
		"paths": {
			"@/*": ["./*"],
			"@ui/*": ["../../packages/ui/*"],
			"@lib/*": ["../../packages/lib/*"],
			"@hooks/*": ["../../packages/hooks/*"]
		},
		"plugins": [
			{
				"name": "next"
			}
		]
	},
	"exclude": ["node_modules"],
	"extends": "@total-typescript/tsconfig/bundler/dom/app",
	"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"]
}