mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-01 17:39:03 +08:00
d689e2d9c1
* feat(react): add react context implementation * chore(docs): updated react docs & demos for new context * chore(docs): added slot docs * chore(docs): fix typo * chore(react): use correct editor package * fix typo in react installation docs * update react typings to latest version * fix types --------- Co-authored-by: bdbch <dominik@bdbch.com>
22 lines
549 B
JSON
22 lines
549 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"strict": false,
|
|
"noEmit": false,
|
|
"sourceMap": false,
|
|
"types": ["cypress", "react", "react-dom"],
|
|
"paths": {
|
|
"@tiptap/*": ["packages/*/dist", "packages/*/src"],
|
|
"@tiptap/pm/*": ["../../pm/*/dist"]
|
|
},
|
|
"typeRoots": ["../../node_modules/@types"]
|
|
},
|
|
"include": ["./*/*.ts", "../../**/*.ts"],
|
|
"exclude": [
|
|
"../../packages/react",
|
|
"../../packages/vue-2",
|
|
"../../packages/vue-3",
|
|
"../../packages/extension-code-block-lowlight"
|
|
]
|
|
}
|