Mercurial > code > home > repos > streamed-graph
changeset 47:7d17a02b5ae0
reformats and minor edits
author | drewp@bigasterisk.com |
---|---|
date | Mon, 06 Jan 2020 23:52:30 -0800 |
parents | 709e305dbd4f |
children | b8e5850acca0 |
files | index.html rollup.config.js tsconfig.json |
diffstat | 3 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/index.html Sun Jan 05 23:54:00 2020 -0800 +++ b/index.html Mon Jan 06 23:52:30 2020 -0800 @@ -4,7 +4,7 @@ <body> <h1>streamed-graph demo</h1> <script type="module" src="./build/bundle.js"></script> - <streamed-graph url="http://bang5:9075/graph/events" expanded="true"></streamed-graph> + <streamed-graph url="http://bang:9075/graph/events" expanded="true"></streamed-graph> </body> </html> \ No newline at end of file
--- a/rollup.config.js Sun Jan 05 23:54:00 2020 -0800 +++ b/rollup.config.js Mon Jan 06 23:52:30 2020 -0800 @@ -1,5 +1,5 @@ import builtins from "rollup-plugin-node-builtins"; -import commonjs from '@rollup/plugin-commonjs'; +import commonjs from "@rollup/plugin-commonjs"; import resolve from "@rollup/plugin-node-resolve"; import typescript from "rollup-plugin-typescript2";
--- a/tsconfig.json Sun Jan 05 23:54:00 2020 -0800 +++ b/tsconfig.json Mon Jan 06 23:52:30 2020 -0800 @@ -11,23 +11,23 @@ "alwaysStrict": true, "types": ["jest"], - + "module": "ES6", - "target": "ES6", + "target": "ES6", "moduleResolution": "node", "sourceMap": true, "declaration": true, "experimentalDecorators": true, "allowJs": true, "esModuleInterop": true, + "traceResolution": true, // "allowSyntheticDefaultImports": true, // "rootDir": ".", // "outDir": "./build", // "baseUrl": "./build" // "emitDecoratorMetadata": true, // "lib": [ "es6", "dom" ], - }, - "include": ["src/**/*.ts"], + "include": ["src/**/*.ts"] // "exclude": ["src/**/*.test.ts"] }