├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── package.json ├── src ├── generate.ts ├── index.ts └── sitemap-types.ts ├── tsconfig.json └── tsup.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryanjso/tanstack-router-sitemap/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryanjso/tanstack-router-sitemap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryanjso/tanstack-router-sitemap/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryanjso/tanstack-router-sitemap/HEAD/package.json -------------------------------------------------------------------------------- /src/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryanjso/tanstack-router-sitemap/HEAD/src/generate.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryanjso/tanstack-router-sitemap/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/sitemap-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryanjso/tanstack-router-sitemap/HEAD/src/sitemap-types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryanjso/tanstack-router-sitemap/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryanjso/tanstack-router-sitemap/HEAD/tsup.config.ts --------------------------------------------------------------------------------