summaryrefslogtreecommitdiffstats
path: root/tsconfig.json
blob: 534314d251f64ec6d655c7d34fb067224d3d11be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
	"compilerOptions": {
		"module": "ES6",
		"moduleResolution": "node",
		"target": "ES6",
		"strictNullChecks": true,
		"sourceMap": true,
		"allowSyntheticDefaultImports": true,
		"declaration": true,
	},
    "include": [
        "./src/**/*"
    ]
}