summaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: 65fd4944461e1f45f7ca23eb2e5f835bb83d5e28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
	"compilerOptions": {
		"target": "es2017",
		"module": "commonjs",
		"declaration": true,
		"outDir": "./built/",
		"rootDir": "./src/",
		"removeComments": true,
		"strict": true,
		"strictFunctionTypes": true,
		"strictNullChecks": true,
		"experimentalDecorators": true,
		"noImplicitReturns": true,
		"esModuleInterop": true,
	},
	"include": [
		"src/**/*",
	],
	"exclude": [
		"node_modules",
		"test/**/*",
	]
}