aboutsummaryrefslogtreecommitdiff
path: root/apps/raycast-extension/tsconfig.json
blob: cbf072b58f0b61031d339f583793b2875a1b6766 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
	"$schema": "https://json.schemastore.org/tsconfig",
	"include": ["src/**/*", "raycast-env.d.ts"],
	"compilerOptions": {
		"lib": ["ES2023"],
		"module": "commonjs",
		"target": "ES2023",
		"strict": true,
		"isolatedModules": true,
		"esModuleInterop": true,
		"skipLibCheck": true,
		"forceConsistentCasingInFileNames": true,
		"jsx": "react-jsx",
		"resolveJsonModule": true
	}
}