4

This is my project structure :

- src
   - app
       - tenantA
       - tenantB
   - assets
   - index.html

How I can exclude folder tenantA when run "ng build" Thanks

1
  • I did see that. But I not working for me Commented Jun 12, 2017 at 3:17

1 Answer 1

1

you can try put that folder in either tsconfig.app.json under /src or tsconfig.json under root, like

"exclude": [
    "test.ts",
    "**/*.spec.ts",
    "_backup/**/*"
]
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.