tldraw/packages/editor/tsconfig.json
Steve Ruiz 2992ad85d9
[chore] remove benchmark (#1489)
This PR removes unused scripts related to benchmarking, and some other
unused dependencies.

### Change Type

- [x] `internal` — Any other changes that don't affect the published
package (will not publish a new version)
2023-05-30 15:43:28 +00:00

21 lines
531 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": "../tlstore" },
{ "path": "../tlvalidate" },
{ "path": "../utils" },
{ "path": "../indices" }
]
}