This package contains shared type definitions used by the Mattermost web app and related projects.
For technologies that support subpath exports, such as Node.js, Webpack, and Babel, you can import these types directly from individual files.
import {UserProfile} from '@mattermost/types/users';
For technologies that don't support that yet, you can add an alias in its package resolution settings to support that.
In your Jest config, you can use the moduleNameMapper
field to add that alias.
{
"moduleNameMapper": {
"^@mattermost/types/(.*)$": "<rootDir>/node_modules/@mattermost/types/lib/$1"
}
}
As a member of Mattermost with write access to our NPM organization, you can build and publish this package by running the following commands:
npm run build --workspace=platform/types
npm publish --workspace=platform/types
Make sure to increment the version number in package.json
first! You can add -0
, -1
, etc for pre-release versions.