aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: 8c3bc0887665d7dbbec5fd6ccfcb9d13f6cdbeb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
	"compileOnSave": false,
	"compilerOptions": {
		"lib": ["es2015"],
		"strict": true,
		"noEmit": true,
		"declaration": true,
		"moduleResolution": "node",
		"skipLibCheck": true,
		"esModuleInterop": true,
	},
	"include": [
		"src/*.ts",
		"test/*.ts"
	]
}