Tldraw/packages/editor/tsconfig.json

31 wiersze
519 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": "../state"
},
{
"path": "../store"
},
{
"path": "../tlschema"
},
{
"path": "../utils"
},
{
"path": "../validate"
}
]
}