8658e20ab5
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>
28 lines
482 B
JSON
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"]
|
|
}
|