# HG changeset patch # User drewp@bigasterisk.com # Date 1578383550 28800 # Node ID 7d17a02b5ae0c6ece62beb64a83568071949b0a8 # Parent 709e305dbd4ff7331c16e6beecd068cbbf11698f reformats and minor edits diff -r 709e305dbd4f -r 7d17a02b5ae0 index.html --- 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 @@

streamed-graph demo

- + \ No newline at end of file diff -r 709e305dbd4f -r 7d17a02b5ae0 rollup.config.js --- 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"; diff -r 709e305dbd4f -r 7d17a02b5ae0 tsconfig.json --- 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"] }