aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: dbce13f781cf776def8d7d2b517c448b62f152b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
	"extends": "./.svelte-kit/tsconfig.json",
	"compilerOptions": {
		"allowJs": true,
		"checkJs": true,
		"esModuleInterop": true,
		"forceConsistentCasingInFileNames": true,
		"resolveJsonModule": true,
		"skipLibCheck": true,
		"sourceMap": true,
		"strict": true,
		"stripInternal": true,
		"noImplicitThis": true,
		"noUnusedLocals": true,
		"noUnusedParameters": true,
		"rootDirs": [
			".",
			"./.svelte-kit/types",
			"./.sveltekit-graphql/types",
			"./$houdini/types"
		],
		"verbatimModuleSyntax": true
	}
}