├── .editorconfig ├── .gitignore ├── .npmignore ├── .vscode └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── circle.yml ├── index.ts ├── package.json ├── rollup.config.js ├── spec └── store.spec.ts ├── src ├── actions.ts ├── config.ts ├── devtools.ts ├── extension.ts ├── instrument.ts ├── reducer.ts └── utils.ts ├── tests.js ├── tsconfig.dist.json ├── tsconfig.json ├── tslint.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrx/store-devtools/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrx/store-devtools/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrx/store-devtools/HEAD/.npmignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrx/store-devtools/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrx/store-devtools/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrx/store-devtools/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrx/store-devtools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrx/store-devtools/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrx/store-devtools/HEAD/circle.yml -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrx/store-devtools/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrx/store-devtools/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrx/store-devtools/HEAD/rollup.config.js -------------------------------------------------------------------------------- /spec/store.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrx/store-devtools/HEAD/spec/store.spec.ts -------------------------------------------------------------------------------- /src/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrx/store-devtools/HEAD/src/actions.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrx/store-devtools/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/devtools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrx/store-devtools/HEAD/src/devtools.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrx/store-devtools/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/instrument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrx/store-devtools/HEAD/src/instrument.ts -------------------------------------------------------------------------------- /src/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrx/store-devtools/HEAD/src/reducer.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrx/store-devtools/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrx/store-devtools/HEAD/tests.js -------------------------------------------------------------------------------- /tsconfig.dist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrx/store-devtools/HEAD/tsconfig.dist.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrx/store-devtools/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrx/store-devtools/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrx/store-devtools/HEAD/yarn.lock --------------------------------------------------------------------------------