├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── clear-cache.zsh ├── nx-completion.plugin.zsh └── test ├── .editorconfig ├── .gitignore ├── .prettierignore ├── .prettierrc ├── backend-api-e2e ├── eslint.config.mjs ├── jest.config.ts ├── project.json ├── src │ ├── backend-api │ │ └── backend-api.spec.ts │ └── support │ │ ├── global-setup.ts │ │ ├── global-teardown.ts │ │ └── test-setup.ts ├── tsconfig.json └── tsconfig.spec.json ├── backend-api ├── eslint.config.mjs ├── jest.config.ts ├── project.json ├── src │ ├── app │ │ ├── app.controller.spec.ts │ │ ├── app.controller.ts │ │ ├── app.module.ts │ │ ├── app.service.spec.ts │ │ └── app.service.ts │ ├── assets │ │ └── .gitkeep │ └── main.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── webpack.config.js ├── eslint.config.mjs ├── frontend-e2e ├── playwright.config.ts ├── project.json ├── src │ └── example.spec.ts └── tsconfig.json ├── frontend ├── index.html ├── project.json ├── public │ └── favicon.ico ├── src │ ├── app │ │ ├── app.module.css │ │ ├── app.spec.tsx │ │ ├── app.tsx │ │ └── nx-welcome.tsx │ ├── assets │ │ └── .gitkeep │ ├── main.tsx │ └── styles.css ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── vite.config.ts ├── jest.config.ts ├── jest.preset.js ├── libs └── shared-ui │ ├── .babelrc │ ├── README.md │ ├── package.json │ ├── project.json │ ├── src │ ├── index.ts │ └── lib │ │ ├── shared-ui.module.css │ │ ├── shared-ui.spec.tsx │ │ └── shared-ui.tsx │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ └── vite.config.ts ├── nx.json ├── package-lock.json ├── package.json ├── tsconfig.base.json └── vitest.workspace.ts /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [edbzn] -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/README.md -------------------------------------------------------------------------------- /clear-cache.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/clear-cache.zsh -------------------------------------------------------------------------------- /nx-completion.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/nx-completion.plugin.zsh -------------------------------------------------------------------------------- /test/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/.editorconfig -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/.prettierignore -------------------------------------------------------------------------------- /test/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /test/backend-api-e2e/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/backend-api-e2e/eslint.config.mjs -------------------------------------------------------------------------------- /test/backend-api-e2e/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/backend-api-e2e/jest.config.ts -------------------------------------------------------------------------------- /test/backend-api-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/backend-api-e2e/project.json -------------------------------------------------------------------------------- /test/backend-api-e2e/src/backend-api/backend-api.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/backend-api-e2e/src/backend-api/backend-api.spec.ts -------------------------------------------------------------------------------- /test/backend-api-e2e/src/support/global-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/backend-api-e2e/src/support/global-setup.ts -------------------------------------------------------------------------------- /test/backend-api-e2e/src/support/global-teardown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/backend-api-e2e/src/support/global-teardown.ts -------------------------------------------------------------------------------- /test/backend-api-e2e/src/support/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/backend-api-e2e/src/support/test-setup.ts -------------------------------------------------------------------------------- /test/backend-api-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/backend-api-e2e/tsconfig.json -------------------------------------------------------------------------------- /test/backend-api-e2e/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/backend-api-e2e/tsconfig.spec.json -------------------------------------------------------------------------------- /test/backend-api/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/backend-api/eslint.config.mjs -------------------------------------------------------------------------------- /test/backend-api/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/backend-api/jest.config.ts -------------------------------------------------------------------------------- /test/backend-api/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/backend-api/project.json -------------------------------------------------------------------------------- /test/backend-api/src/app/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/backend-api/src/app/app.controller.spec.ts -------------------------------------------------------------------------------- /test/backend-api/src/app/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/backend-api/src/app/app.controller.ts -------------------------------------------------------------------------------- /test/backend-api/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/backend-api/src/app/app.module.ts -------------------------------------------------------------------------------- /test/backend-api/src/app/app.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/backend-api/src/app/app.service.spec.ts -------------------------------------------------------------------------------- /test/backend-api/src/app/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/backend-api/src/app/app.service.ts -------------------------------------------------------------------------------- /test/backend-api/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/backend-api/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/backend-api/src/main.ts -------------------------------------------------------------------------------- /test/backend-api/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/backend-api/tsconfig.app.json -------------------------------------------------------------------------------- /test/backend-api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/backend-api/tsconfig.json -------------------------------------------------------------------------------- /test/backend-api/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/backend-api/tsconfig.spec.json -------------------------------------------------------------------------------- /test/backend-api/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/backend-api/webpack.config.js -------------------------------------------------------------------------------- /test/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/eslint.config.mjs -------------------------------------------------------------------------------- /test/frontend-e2e/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/frontend-e2e/playwright.config.ts -------------------------------------------------------------------------------- /test/frontend-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/frontend-e2e/project.json -------------------------------------------------------------------------------- /test/frontend-e2e/src/example.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/frontend-e2e/src/example.spec.ts -------------------------------------------------------------------------------- /test/frontend-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/frontend-e2e/tsconfig.json -------------------------------------------------------------------------------- /test/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/frontend/index.html -------------------------------------------------------------------------------- /test/frontend/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/frontend/project.json -------------------------------------------------------------------------------- /test/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/frontend/public/favicon.ico -------------------------------------------------------------------------------- /test/frontend/src/app/app.module.css: -------------------------------------------------------------------------------- 1 | /* Your styles goes here. */ 2 | -------------------------------------------------------------------------------- /test/frontend/src/app/app.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/frontend/src/app/app.spec.tsx -------------------------------------------------------------------------------- /test/frontend/src/app/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/frontend/src/app/app.tsx -------------------------------------------------------------------------------- /test/frontend/src/app/nx-welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/frontend/src/app/nx-welcome.tsx -------------------------------------------------------------------------------- /test/frontend/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/frontend/src/main.tsx -------------------------------------------------------------------------------- /test/frontend/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/frontend/src/styles.css -------------------------------------------------------------------------------- /test/frontend/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/frontend/tsconfig.app.json -------------------------------------------------------------------------------- /test/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/frontend/tsconfig.json -------------------------------------------------------------------------------- /test/frontend/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/frontend/tsconfig.spec.json -------------------------------------------------------------------------------- /test/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/frontend/vite.config.ts -------------------------------------------------------------------------------- /test/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/jest.config.ts -------------------------------------------------------------------------------- /test/jest.preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/jest.preset.js -------------------------------------------------------------------------------- /test/libs/shared-ui/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/libs/shared-ui/.babelrc -------------------------------------------------------------------------------- /test/libs/shared-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/libs/shared-ui/README.md -------------------------------------------------------------------------------- /test/libs/shared-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/libs/shared-ui/package.json -------------------------------------------------------------------------------- /test/libs/shared-ui/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/libs/shared-ui/project.json -------------------------------------------------------------------------------- /test/libs/shared-ui/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/shared-ui'; 2 | -------------------------------------------------------------------------------- /test/libs/shared-ui/src/lib/shared-ui.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/libs/shared-ui/src/lib/shared-ui.module.css -------------------------------------------------------------------------------- /test/libs/shared-ui/src/lib/shared-ui.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/libs/shared-ui/src/lib/shared-ui.spec.tsx -------------------------------------------------------------------------------- /test/libs/shared-ui/src/lib/shared-ui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/libs/shared-ui/src/lib/shared-ui.tsx -------------------------------------------------------------------------------- /test/libs/shared-ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/libs/shared-ui/tsconfig.json -------------------------------------------------------------------------------- /test/libs/shared-ui/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/libs/shared-ui/tsconfig.lib.json -------------------------------------------------------------------------------- /test/libs/shared-ui/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/libs/shared-ui/tsconfig.spec.json -------------------------------------------------------------------------------- /test/libs/shared-ui/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/libs/shared-ui/vite.config.ts -------------------------------------------------------------------------------- /test/nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/nx.json -------------------------------------------------------------------------------- /test/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/package-lock.json -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/package.json -------------------------------------------------------------------------------- /test/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/tsconfig.base.json -------------------------------------------------------------------------------- /test/vitest.workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jscutlery/nx-completion/HEAD/test/vitest.workspace.ts --------------------------------------------------------------------------------