├── .github └── workflows │ ├── fmt.yml │ └── test.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── package.json ├── src ├── fileloc.d.ts └── index.ts ├── test ├── index.js └── tests │ └── basic.ts ├── tsconfig.json └── yarn.lock /.github/workflows/fmt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonlederer/esbuild-plugin-fileloc/HEAD/.github/workflows/fmt.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonlederer/esbuild-plugin-fileloc/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonlederer/esbuild-plugin-fileloc/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .github 3 | dist -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "trailingComma": "none" 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonlederer/esbuild-plugin-fileloc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonlederer/esbuild-plugin-fileloc/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonlederer/esbuild-plugin-fileloc/HEAD/package.json -------------------------------------------------------------------------------- /src/fileloc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonlederer/esbuild-plugin-fileloc/HEAD/src/fileloc.d.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonlederer/esbuild-plugin-fileloc/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonlederer/esbuild-plugin-fileloc/HEAD/test/index.js -------------------------------------------------------------------------------- /test/tests/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonlederer/esbuild-plugin-fileloc/HEAD/test/tests/basic.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonlederer/esbuild-plugin-fileloc/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonlederer/esbuild-plugin-fileloc/HEAD/yarn.lock --------------------------------------------------------------------------------