├── .eslintrc.json ├── .github └── FUNDING.yml ├── .gitignore ├── .opensource └── project.json ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── images └── firebase.png ├── jsconfig.json ├── package.json └── snippets └── snippets.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHdd/firebase-firestore-snippets/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHdd/firebase-firestore-snippets/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHdd/firebase-firestore-snippets/HEAD/.gitignore -------------------------------------------------------------------------------- /.opensource/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHdd/firebase-firestore-snippets/HEAD/.opensource/project.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHdd/firebase-firestore-snippets/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHdd/firebase-firestore-snippets/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHdd/firebase-firestore-snippets/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHdd/firebase-firestore-snippets/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHdd/firebase-firestore-snippets/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHdd/firebase-firestore-snippets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHdd/firebase-firestore-snippets/HEAD/README.md -------------------------------------------------------------------------------- /images/firebase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHdd/firebase-firestore-snippets/HEAD/images/firebase.png -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHdd/firebase-firestore-snippets/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHdd/firebase-firestore-snippets/HEAD/package.json -------------------------------------------------------------------------------- /snippets/snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHdd/firebase-firestore-snippets/HEAD/snippets/snippets.json --------------------------------------------------------------------------------