summaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: 5fde3a596cf15f9e8793c0e17b59ec77be269830 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
	"compilerOptions": {
		"module": "commonjs",
		"target": "es6",
		"outDir": "out",
		"rootDir": "src",
		"lib": [ "es6" ],
		"sourceMap": true
	},
	"include": [
		"src"
	],
	"exclude": [
		"node_modules"
	],
	"references": [
		{ "path": "./client" }
	]
}