Alex Mikhalev
6 years ago
5 changed files with 45 additions and 55 deletions
@ -1,35 +1,25 @@ |
|||||||
{ |
{ |
||||||
"compilerOptions": { |
"extends": "../tsconfig.json", |
||||||
"outDir": "../dist", |
"compilerOptions": { |
||||||
"sourceMap": true, |
"outDir": "../dist", |
||||||
"experimentalDecorators": true, |
"sourceMap": true, |
||||||
"emitDecoratorMetadata": true, |
"emitDecoratorMetadata": true, |
||||||
"target": "es2017", |
"strict": true, |
||||||
"module": "commonjs", |
"allowJs": true, |
||||||
"lib": [ |
"baseUrl": "..", |
||||||
"es6", |
"paths": { |
||||||
"dom" |
"@common/*": [ |
||||||
], |
"./common/*" |
||||||
"types": [ |
], |
||||||
"webpack-env", |
"@server/*": [ |
||||||
"node" |
"./server/*" |
||||||
], |
] |
||||||
"strict": true, |
} |
||||||
"allowJs": true, |
}, |
||||||
"baseUrl": "..", |
"references": [{ |
||||||
"paths": { |
"path": "../common" |
||||||
"@common/*": [ |
}], |
||||||
"./common/*" |
"include": [ |
||||||
], |
"./**/*.ts" |
||||||
"@server/*": [ |
] |
||||||
"./server/*" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
"references": [{ |
|
||||||
"path": "../common" |
|
||||||
}], |
|
||||||
"include": [ |
|
||||||
"./**/*.ts" |
|
||||||
] |
|
||||||
} |
} |
Loading…
Reference in new issue