Typescript Guide
Bit is a generic platform that can use Typescript code that encapsulate specific functionality. This section adds typescript specific best practices on top of Bit's general Best Practices.
The guide is appropriate to use with components that are not library specific. This may be NodeJS code or utility functions used in different frameworks.
Compilers
To compile typescript code use the Typescript compiler.
bit import bit.envs/compilers/typescript --compiler
Check here the configuration used by the Typescript compiler.
Changing Compiler Configuration
To change the configuration of a compiler, here are the recommended steps to follow:
- Create a new directory and an empty workspace in it
- Import the compiler you want to modify, but without the --compiler flag
- Modify the .babelrc file of the compiler to fit your needs
- Tag and export the new version of the component to your own scope
Now, in your project configuration (package.json
or bit.json
), change the default compiler to be the new component.
Run bit status to see that all components properly built. You may also change it to a specific components using overrides
Testers
You can use the following testers for plain vanilla code:
To use those testers run:
bit import bit.envs/testers/mocha --testers
Use Path aliases
To avoid backward references as suggested in the best practices, use absolute paths for imports. Use the following according to your environment needs:
Ensure Bit Components are Exposed via a Single Entry Point
Each shared component should have a single entry point which is the root file of the component. Add a top-level index.ts
file that will expose all of the component’s APIs, e.g. by re-exporting them from the internal file.
This practice reduces coupling between components as one component does not need to be aware of the internal file structure of another component. Specifically, if the component is bundled (e.g. UMD format) the internal files will not be available.
Package Types
When Bit is building the dependency graph for a component, it will automatically add types for packages that are required and exist in the project. For example, if a component is requiring jquery
and the package.json
contains @types/jquery
, the @types/jquery
are added to the component as a devDependency.
Global Types
Bit is adding dependencies as defined in the code files, both source and tests. For that reason global types for typescript are not interfered by default. If you are using global styles, such as @types/node
or @types/jest
, you should add them as devDependencies using the overrides option:
{
"overrides" : {
"*": {
"devDependencies" : {
"@types/node": "+"
}
}
}
}
Handling Assets and Styles
Refer to the general guidelines on how to handle assets amd styles.