parent
8c1195450c
commit
8feb565794
3 changed files with 6 additions and 3 deletions
|
@ -15,11 +15,13 @@ You can use this package to build projects like [tldraw](https://tldraw.com), wh
|
|||
Use your package manager of choice to install `@tldraw/core` and its peer dependencies.
|
||||
|
||||
```bash
|
||||
yarn add @tldraw/core
|
||||
yarn add @tldraw/core && yarn build
|
||||
# or
|
||||
npm i @tldraw/core
|
||||
npm i @tldraw/core && npm run build
|
||||
```
|
||||
|
||||
> Note: You'll need to run the `build` script before running `dev`.
|
||||
|
||||
## Examples
|
||||
|
||||
There are two examples in this repository.
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
"dist"
|
||||
],
|
||||
"compilerOptions": {
|
||||
"skipLibCheck": true,
|
||||
"composite": false,
|
||||
"incremental": false,
|
||||
"declaration": true,
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
"extends": "./tsconfig.json",
|
||||
"include": ["src"],
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"**/*.test.tsx",
|
||||
|
@ -11,6 +10,7 @@
|
|||
"dist"
|
||||
],
|
||||
"compilerOptions": {
|
||||
"skipLibCheck": true,
|
||||
"composite": false,
|
||||
"incremental": false,
|
||||
"declaration": true,
|
||||
|
|
Loading…
Reference in a new issue