tldraw/packages/file-format/tsconfig.json
Steve Ruiz 7307282f1f
Rename tlvalidate to validate (#1508)
This PR renames the @tldraw/tlvalidate package to @tldraw/validate. 

### Change Type

- [x] `major` — Breaking Change

### Release Notes

- Rename tlvalidate to validate
2023-06-03 08:27:44 +00:00

17 lines
377 B
JSON

{
"extends": "../../config/tsconfig.base.json",
"include": ["src"],
"exclude": ["node_modules", "dist", ".tsbuild*"],
"compilerOptions": {
"outDir": "./.tsbuild",
"rootDir": "src"
},
"references": [
{ "path": "../editor" },
{ "path": "../tlstore" },
{ "path": "../validate" },
{ "path": "../primitives" },
{ "path": "../utils" },
{ "path": "../ui" }
]
}