f8360396ff
Prefer to replace paths at compile time
17 lines
437 B
JSON
17 lines
437 B
JSON
{
|
|
"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
|
|
}
|