Fix tsconfigs

This commit is contained in:
Alex Mikhalev 2019-07-20 11:33:30 -06:00
parent 097e5a246c
commit ac27c0a9ec
4 changed files with 21 additions and 4 deletions

View File

@ -27,6 +27,7 @@
"./client/**/*.ts",
"./client/**/*.tsx"
],
"exclude": [],
"references": [{
"path": "../common"
}]

View File

@ -15,5 +15,6 @@
},
"include": [
"./**/*.ts",
]
],
"exclude": []
}

View File

@ -21,5 +21,6 @@
}],
"include": [
"./**/*.ts"
]
],
"exclude": []
}

View File

@ -9,6 +9,20 @@
"types": [
"node"
],
"strict": true
}
"strict": true,
"baseUrl": ".",
"paths": {
"@common/*": [
"./common/*"
],
"@client/*": [
"./client/*"
]
}
},
"exclude": [
"./client",
"./common",
"./server"
]
}