aboutsummaryrefslogtreecommitdiff
path: root/apps/mcp/tsconfig.json
blob: 576d11756850213ac7311ac7554bba00a066da8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
	"compilerOptions": {
		"target": "ESNext",
		"module": "ESNext",
		"moduleResolution": "Bundler",
		"strict": true,
		"skipLibCheck": true,
		"lib": ["ESNext"],
		"types": ["@cloudflare/workers-types"],
		"jsx": "react-jsx",
		"jsxImportSource": "hono/jsx",
		"esModuleInterop": true,
		"resolveJsonModule": true,
		"outDir": "dist",
		"rootDir": "src",
		"baseUrl": "."
	},
	"include": ["src/**/*"],
	"exclude": ["node_modules"]
}