nest-cli.json 416 B

12345678910111213141516171819
  1. {
  2. "$schema": "https://json.schemastore.org/nest-cli",
  3. "collection": "@nestjs/schematics",
  4. "sourceRoot": "src",
  5. "projects": {
  6. "utils": {
  7. "type": "library",
  8. "root": "libs/utils",
  9. "entryFile": "index",
  10. "sourceRoot": "libs/utils/src",
  11. "compilerOptions": {
  12. "tsConfigPath": "libs/utils/tsconfig.lib.json"
  13. }
  14. }
  15. },
  16. "compilerOptions": {
  17. "webpack": true
  18. }
  19. }