tiptap/tests/cypress/tsconfig.json
bdbch d689e2d9c1
React context implementation for Tiptap (#4192)
* 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>
2023-07-11 18:20:43 +02:00

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"
]
}