tldraw/apps/docs/tsconfig.json
Taha 8658e20ab5
Custom shape examples (#2994)
This PR:
- adds a simple custom shape example
- adds an interactive shape example
- updates editable shape example

closes TLD-2118

- [x] `documentation` — Changes to the documentation only[^2]

### Release Notes

- adds a simple custom shape example
- adds an interactive shape example
- updates editable shape example

---------

Co-authored-by: Steve Ruiz <steveruizok@gmail.com>
2024-03-02 20:18:31 +00:00

28 lines
482 B
JSON

{
"extends": "../../config/tsconfig.base.json",
"compilerOptions": {
"paths": {
"@/*": ["./*"]
},
"lib": ["dom", "dom.iterable", "esnext"],
"plugins": [
{
"name": "next"
}
],
"allowJs": true,
"emitDeclarationOnly": false,
"noEmit": true,
"isolatedModules": true,
"jsx": "preserve"
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"content.d.ts",
".next/types/**/*.ts",
"watcher.ts"
],
"exclude": ["node_modules", ".next"]
}