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.
|
Use your package manager of choice to install `@tldraw/core` and its peer dependencies.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
yarn add @tldraw/core
|
yarn add @tldraw/core && yarn build
|
||||||
# or
|
# 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
|
## Examples
|
||||||
|
|
||||||
There are two examples in this repository.
|
There are two examples in this repository.
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
|
"skipLibCheck": true,
|
||||||
"composite": false,
|
"composite": false,
|
||||||
"incremental": false,
|
"incremental": false,
|
||||||
"declaration": true,
|
"declaration": true,
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
{
|
{
|
||||||
"extends": "./tsconfig.json",
|
"extends": "./tsconfig.json",
|
||||||
"include": ["src"],
|
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"node_modules",
|
"node_modules",
|
||||||
"**/*.test.tsx",
|
"**/*.test.tsx",
|
||||||
|
@ -11,6 +10,7 @@
|
||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
|
"skipLibCheck": true,
|
||||||
"composite": false,
|
"composite": false,
|
||||||
"incremental": false,
|
"incremental": false,
|
||||||
"declaration": true,
|
"declaration": true,
|
||||||
|
|
Loading…
Reference in a new issue