diff options
author | Tony Hansen <tony@att.com> | 2020-09-23 19:50:45 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-09-23 19:50:45 +0000 |
commit | d1d83ea8dfcd7c4dd943482bc93e9b699ffaabd8 (patch) | |
tree | b10ccb154430158471fab73c81a5a49ce45ed632 /mod2/ui/tsconfig.json | |
parent | 04ceefb1f221420c6e27c5aa73b8a574b0e79668 (diff) | |
parent | 457685063fd4b960441e482cc8b88fa8c972a7d2 (diff) |
Merge "Fix mod ui build issues"
Diffstat (limited to 'mod2/ui/tsconfig.json')
-rw-r--r-- | mod2/ui/tsconfig.json | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/mod2/ui/tsconfig.json b/mod2/ui/tsconfig.json new file mode 100644 index 0000000..e65fbae --- /dev/null +++ b/mod2/ui/tsconfig.json @@ -0,0 +1,33 @@ +{ + "compileOnSave": false, + "include": [ + "typings.d.ts" + ], + "exclude": [ + "node_modules/@types/nodes/index.d.ts" + ], + "compilerOptions": { + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": true, + "declaration": false, + "module": "esnext", + "moduleResolution": "node", + "emitDecoratorMetadata": true, + "experimentalDecorators": true, + "importHelpers": true, + "target": "es2015", + "types": [ + "node", + "lodash", + "typings.d.ts" + ], + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + } +} |