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