Skip to content

Commit

Permalink
fix(icons): include pkg ts paths (#1318)
Browse files Browse the repository at this point in the history
  • Loading branch information
Niznikr authored Jun 3, 2024
1 parent a5092d1 commit ce26602
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/tech-stack.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Design Tokens

Design tokens are platform-agnostic design decisions that encapsulate our brand. They are the foundation to building user interfaces and new experiences. We write tokens in [yaml syntax](https://yaml.org/) for its readability and brevity.
Design tokens are platform-agnostic design decisions that encapsulate our brand. They are the foundation to building user interfaces and new experiences. We write tokens in the [DTCG format](https://tr.designtokens.org/format/).

### Transforms

Expand Down
2 changes: 1 addition & 1 deletion packages/core/stories/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ import { Figma } from '@storybook/addon-designs/blocks';

<Meta title="Getting started" />

<Figma url="https://www.figma.com/file/ITlrRueSW0eYdUp7acr9Xi/LaunchPad?type=design&node-id=19352-29" />
<Figma url="https://www.figma.com/file/98HKKXL2dTle29ikJ3tzk7/LaunchPad?node-id=1-737" />
7 changes: 5 additions & 2 deletions packages/tokens/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
{
"extends": "../../tsconfig.base.json",
"include": ["*.ts"],
"compilerOptions": {
"moduleResolution": "bundler"
"moduleResolution": "bundler",
"baseUrl": ".",
"paths": {
"@launchpad-ui/*": ["../*/src"]
}
}
}

0 comments on commit ce26602

Please sign in to comment.