aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: ec63b9afea28521e87c65a9496b4fd966f6a029f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
	"compilerOptions": {
		"module": "ESNext",
		"lib": ["esnext", "dom", "DOM.Iterable"],
		"target": "ESNext",
		"esModuleInterop": true,
		"outDir": "build",
		"strictNullChecks": true,
		"moduleResolution": "node",
		"incremental": true,
		"declaration": true
	},
	"include": ["src"],
	"exclude": ["**/node_modules"],
}