@nrwl/js:library
Create a TypeScript Library.
Create a TypeScript Library.
Generate a library named mylib and put it under a directory named myapp (libs/myapp/mylib)
npx nx g lib mylib --directory=myapp
nx generate library ...
nx g lib ... #same
By default, Nx will search for library in the default collection provisioned in workspace.json.
You can specify the collection explicitly as follows:
nx g @nrwl/js:library ...
Show what will be generated without writing to disk:
nx g library ... --dry-run
^[a-zA-Z].*$Library name.
trueGenerate a buildable library.
nonenone, esbuild, rollup, viteThe bundler to use.
tsctsc, swcThe compiler used by the build and test targets
A directory where the lib is placed.
falseGenerate a publishable library.
Include a .babelrc configuration to compile TypeScript files
The library name used to import it, like @myorg/my-awesome-lib.
falseGenerate JavaScript files rather than TypeScript files.
eslinteslint, noneThe tool to use for running lint checks.
falseUse pascal case file names.
trueWhether to enable tsconfig strict mode or not.
falseWhether or not to configure the ESLint parserOptions.project option. We do not do this by default for lint performance reasons.
falseWhether to skip TypeScript type checking for SWC compiler.
Add tags to the library (used for linting).
jsdomjsdom, nodeThe test environment to use if unitTestRunner is set to jest.
jest, vitest, noneTest runner to use for unit tests.
projectworkspace, project, npm-scriptsDetermines whether the project's executors should be configured in workspace.json, project.json or as npm scripts.
falseSkip formatting files.
falseDo not update tsconfig.json for development experience.