diff options
author | sai-neetha <sai-neetha.phulmali@highstreet-technologies.com> | 2023-07-07 18:11:09 +0200 |
---|---|---|
committer | sai-neetha <sai-neetha.phulmali@highstreet-technologies.com> | 2023-07-07 18:12:17 +0200 |
commit | fad3167f42d585e3144547db4c6dd7d00ea7b18a (patch) | |
tree | d6578fd008c717748e6110c2072bbe65fcb91e2e /sdnr/wt/odlux/tsconfig.json | |
parent | 8efd8356d7ea705e282a72aeb74d4199cdf21851 (diff) |
Update ODLUX
node version yarn version update
Issue-ID: CCSDK-3923
Signed-off-by: sai-neetha <sai-neetha.phulmali@highstreet-technologies.com>
Change-Id: Ibd3d6a6f45a14be4f1d175cf6fc5c8738aa11dea
Diffstat (limited to 'sdnr/wt/odlux/tsconfig.json')
-rw-r--r-- | sdnr/wt/odlux/tsconfig.json | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/sdnr/wt/odlux/tsconfig.json b/sdnr/wt/odlux/tsconfig.json new file mode 100644 index 000000000..c4cc6e0d4 --- /dev/null +++ b/sdnr/wt/odlux/tsconfig.json @@ -0,0 +1,39 @@ +{ + "compilerOptions": { + "sourceMap": true, + "forceConsistentCasingInFileNames": true, + "allowSyntheticDefaultImports": true, + "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": [ + "node_modules", + "apps/*/dist", + "apps/*/node_modules" + ], + "include": [ + "apps/*/src" + ] +} |