- Create an empty directory and cd into it
$ mkdir your-component-library && cd your-component-library
- Initialize yarn
$ yarn init
- Initialize eslint
$ eslint --init # OR "npx eslint --init" if eslint isn't installed globally on your machine
- Initialize typescript: create
tsconfig.json
file with the following content:
{
"compilerOptions": {