Remove path mapping to self modules

This would cause imports in the common module to reference out/ instead
of src/, this leads to weird behavior when errors are introduced.
This commit is contained in:
Daniel Imms
2019-06-01 08:37:37 -07:00
parent 7a0ed764bd
commit 9068107f5a
3 changed files with 3 additions and 8 deletions
+1 -4
View File
@@ -5,10 +5,7 @@
"types": [
"../../node_modules/@types/mocha"
],
"baseUrl": "..",
"paths": {
"common/*": [ "./common/*" ]
}
"baseUrl": ".."
},
"include": [ "./**/*" ]
}
+1 -2
View File
@@ -7,8 +7,7 @@
],
"baseUrl": "..",
"paths": {
"common/*": [ "./common/*" ],
"core/*": [ "./core/*" ]
"common/*": [ "./common/*" ]
}
},
"include": [ "./**/*" ],
+1 -2
View File
@@ -11,8 +11,7 @@
],
"baseUrl": "..",
"paths": {
"common/*": [ "./common/*" ],
"ui/*": [ "./ui/*" ]
"common/*": [ "./common/*" ]
}
},
"include": [ "./**/*" ],