tldraw/packages/editor/tsconfig.json

23 lines
553 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*"],
"compilerOptions": {
"outDir": "./.tsbuild",
"rootDir": "src",
// TODO: enable these two options
"noImplicitOverride": false,
"noImplicitReturns": false,
"types": ["node", "@types/jest"]
2023-04-25 11:01:25 +00:00
},
"references": [
{ "path": "../primitives" },
{ "path": "../tlschema" },
{ "path": "../store" },
{ "path": "../validate" },
{ "path": "../utils" },
{ "path": "../indices" },
{ "path": "../state" }
2023-04-25 11:01:25 +00:00
]
}