added a couple of aliases to clean up the eternal '../../../../..'

pull/3/head
Chris Veilleux 2019-03-21 23:18:36 -05:00
parent 3e523eb37a
commit 68a2f993b9
1 changed files with 45 additions and 39 deletions

View File

@ -1,41 +1,47 @@
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"module": "es2015",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2018",
"dom"
],
"paths": {
"globalnav": [
"dist/globalnav"
],
"globalnav/*": [
"dist/globalnav/*"
],
"page-not-found": [
"dist/page-not-found"
],
"page-not-found/*": [
"dist/page-not-found/*"
],
"shared": [
"dist/shared"
],
"shared/*": [
"dist/shared/*"
]
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"module": "es2015",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2018",
"dom"
],
"paths": {
"globalnav": [
"dist/globalnav"
],
"globalnav/*": [
"dist/globalnav/*"
],
"page-not-found": [
"dist/page-not-found"
],
"page-not-found/*": [
"dist/page-not-found/*"
],
"shared": [
"dist/shared"
],
"shared/*": [
"dist/shared/*"
],
"@account/http/*": [
"projects/account/src/app/core/http/*"
],
"@account/models/*": [
"projects/account/src/app/shared/models/*"
]
}
}
}
}
}