blob: 8264f5b354400af8862e380dbc39726b26819c73 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"baseUrl": "./",
"outDir": "../../dist/server/tools",
"paths": { // FIXME: https://github.com/benyap/resolve-tspaths/issues/10
"@server/*": [ "../../server/*" ],
"@shared/*": [ "../../shared/*" ]
}
},
"include": [ ".", "../typings" ],
"references": [
{ "path": "../" }
],
"files": [],
"exclude": [ ] // Overwrite exclude property
}
|