c1b84bf246
This PR renames the `@tldraw/tlstore` package to `@tldraw/store`, mainly to avoid confusion between `TLStore`. Will be doing the same with other packages. ### Change Type - [x] `major` — Breaking Change ### Release Notes - Replace @tldraw/tlstore with @tldraw/store
21 lines
527 B
JSON
21 lines
527 B
JSON
{
|
|
"extends": "../../config/tsconfig.base.json",
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "dist", "**/*.css", ".tsbuild*"],
|
|
"compilerOptions": {
|
|
"outDir": "./.tsbuild",
|
|
"rootDir": "src",
|
|
// TODO: enable these two options
|
|
"noImplicitOverride": false,
|
|
"noImplicitReturns": false,
|
|
"types": ["node", "@types/jest"]
|
|
},
|
|
"references": [
|
|
{ "path": "../primitives" },
|
|
{ "path": "../tlschema" },
|
|
{ "path": "../store" },
|
|
{ "path": "../validate" },
|
|
{ "path": "../utils" },
|
|
{ "path": "../indices" }
|
|
]
|
|
}
|