From 468639264ab0a131a99c80291da8ed34b31c9f14 Mon Sep 17 00:00:00 2001 From: death-claw <53543762+death-claw@users.noreply.github.com> Date: Sun, 26 Jul 2020 15:10:09 +0100 Subject: [PATCH] Major rewrites of data persistence, websocket, and user interface --- vripper-ui/.angulardoc.json | 4 ++++ vripper-ui/src/.browserslistrc | 11 +++++++++++ vripper-ui/tsconfig.base.json | 22 ++++++++++++++++++++++ 3 files changed, 37 insertions(+) create mode 100644 vripper-ui/.angulardoc.json create mode 100644 vripper-ui/src/.browserslistrc create mode 100644 vripper-ui/tsconfig.base.json diff --git a/vripper-ui/.angulardoc.json b/vripper-ui/.angulardoc.json new file mode 100644 index 0000000..ac53126 --- /dev/null +++ b/vripper-ui/.angulardoc.json @@ -0,0 +1,4 @@ +{ + "repoId": "65cf9772-12a2-4386-8124-a1813f7a18be", + "lastSync": 0 +} \ No newline at end of file diff --git a/vripper-ui/src/.browserslistrc b/vripper-ui/src/.browserslistrc new file mode 100644 index 0000000..37371cb --- /dev/null +++ b/vripper-ui/src/.browserslistrc @@ -0,0 +1,11 @@ +# This file is currently used by autoprefixer to adjust CSS to support the below specified browsers +# For additional information regarding the format and rule options, please see: +# https://github.com/browserslist/browserslist#queries +# +# For IE 9-11 support, please remove 'not' from the last line of the file and adjust as needed + +> 0.5% +last 2 versions +Firefox ESR +not dead +not IE 9-11 \ No newline at end of file diff --git a/vripper-ui/tsconfig.base.json b/vripper-ui/tsconfig.base.json new file mode 100644 index 0000000..9fcb8f7 --- /dev/null +++ b/vripper-ui/tsconfig.base.json @@ -0,0 +1,22 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": true, + "declaration": false, + "module": "esnext", + "moduleResolution": "node", + "emitDecoratorMetadata": true, + "experimentalDecorators": true, + "importHelpers": true, + "target": "es5", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + } +}