tldraw/packages/core/tsconfig.json
2021-09-05 10:51:21 +01:00

20 lines
420 B
JSON

{
"extends": "../../tsconfig.base.json",
"include": ["src"],
"exclude": ["node_modules", "dist"],
"compilerOptions": {
"rootDir": "src",
"outDir": "./dist/types",
"baseUrl": "src",
"paths": {
"+*": ["./*"]
}
},
"typedocOptions": {
"name": "@tldraw/core",
"theme": "default",
"highlightTheme": "github-light",
"entryPoints": ["src/index.ts"],
"out": "docs"
}
}