Tldraw/packages/editor/tsconfig.json

23 wiersze
553 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" },
{ "path": "../state" }
]
}