├── .gitignore ├── .npmignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── jest.config.cjs ├── package.json ├── src └── index.mts ├── tests ├── annotations.test.mts ├── complicated.test.mts ├── example.test.mts ├── misc.test.mts └── syntax.test.mts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamguid/ngx-mf/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamguid/ngx-mf/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamguid/ngx-mf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamguid/ngx-mf/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamguid/ngx-mf/HEAD/jest.config.cjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamguid/ngx-mf/HEAD/package.json -------------------------------------------------------------------------------- /src/index.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamguid/ngx-mf/HEAD/src/index.mts -------------------------------------------------------------------------------- /tests/annotations.test.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamguid/ngx-mf/HEAD/tests/annotations.test.mts -------------------------------------------------------------------------------- /tests/complicated.test.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamguid/ngx-mf/HEAD/tests/complicated.test.mts -------------------------------------------------------------------------------- /tests/example.test.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamguid/ngx-mf/HEAD/tests/example.test.mts -------------------------------------------------------------------------------- /tests/misc.test.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamguid/ngx-mf/HEAD/tests/misc.test.mts -------------------------------------------------------------------------------- /tests/syntax.test.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamguid/ngx-mf/HEAD/tests/syntax.test.mts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamguid/ngx-mf/HEAD/tsconfig.json --------------------------------------------------------------------------------