tldraw/packages/ui/tsconfig.json

18 lines
442 B
JSON
Raw Normal View History

2023-04-25 11:01:25 +00:00
{
"extends": "../../config/tsconfig.base.json",
"include": ["src"],
"exclude": ["node_modules", "dist", "**/*.css", ".tsbuild*", "./scripts/legacy-translations"],
"compilerOptions": {
"outDir": "./.tsbuild",
// TODO: Enable noImplicitReturns
"noImplicitReturns": false,
"rootDir": "src"
},
"references": [
{ "path": "../editor" },
{ "path": "../primitives" },
{ "path": "../tlsync-client" },
{ "path": "../utils" }
]
}