diff options
author | KAPIL SINGAL <ks220y@att.com> | 2020-08-31 12:49:34 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-08-31 12:49:34 +0000 |
commit | a4ceb7aa23cab5d291d0784095492b001709981f (patch) | |
tree | 25e7c23ef3acc6c201c0d784ea658c155cec2a64 /sdnr/wt/odlux/apps/networkMapApp/tsconfig.json | |
parent | b9aba01d54fa0f20c87dcac0f1aaa51bd8128652 (diff) | |
parent | 7058ffa19dde75c14eb89270c1a57926c0bce4cc (diff) |
Merge "Add networkMap"
Diffstat (limited to 'sdnr/wt/odlux/apps/networkMapApp/tsconfig.json')
-rw-r--r-- | sdnr/wt/odlux/apps/networkMapApp/tsconfig.json | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/sdnr/wt/odlux/apps/networkMapApp/tsconfig.json b/sdnr/wt/odlux/apps/networkMapApp/tsconfig.json new file mode 100644 index 000000000..a66b5d828 --- /dev/null +++ b/sdnr/wt/odlux/apps/networkMapApp/tsconfig.json @@ -0,0 +1,37 @@ +{ + "compilerOptions": { + "baseUrl": "./src", + "outDir": "./dist", + "sourceMap": true, + "forceConsistentCasingInFileNames": true, + "allowSyntheticDefaultImports": false, + "allowUnreachableCode": false, + "allowUnusedLabels": false, + "noFallthroughCasesInSwitch": true, + "noImplicitAny": true, + "noImplicitReturns": true, + "noImplicitThis": true, + "strictNullChecks": true, + "pretty": true, + "newLine": "LF", + "module": "es2015", + "target": "es2016", + "moduleResolution": "node", + "experimentalDecorators": true, + "jsx": "preserve", + "lib": [ + "dom", + "es2015", + "es2016" + ], + "types": [ + "prop-types", + "react", + "react-dom" + ] + }, + "exclude": [ + "dist", + "node_modules" + ] +} |