sprinklers3/server/tsconfig.json

25 lines
509 B
JSON
Raw Normal View History

2017-09-07 12:26:23 -06:00
{
2018-09-02 03:15:31 -06:00
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "../dist",
"sourceMap": true,
"emitDecoratorMetadata": true,
"strict": true,
"allowJs": true,
"baseUrl": "..",
"paths": {
"@common/*": [
"./common/*"
],
"@server/*": [
"./server/*"
]
}
},
"references": [{
"path": "../common"
}],
"include": [
"./**/*.ts"
]
2017-09-07 12:26:23 -06:00
}