-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Expand file tree
/
Copy pathtsconfig.json
More file actions
24 lines (24 loc) · 763 Bytes
/
tsconfig.json
File metadata and controls
24 lines (24 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"moduleResolution": "bundler",
"strict": false,
"noEmit": false,
"sourceMap": false,
"types": ["cypress", "react", "react-dom"],
"paths": {
"@tiptap/static-renderer/pm/*": ["packages/static-renderer/src/pm/*"],
"@tiptap/static-renderer/json/*": ["packages/static-renderer/src/json/*"],
"@tiptap/*": ["packages/*/src", "packages/*/dist"],
"@tiptap/pm/*": ["packages/pm/*"]
},
"typeRoots": ["../../node_modules/@types", "../../node_modules/"]
},
"include": ["./*/*.ts", "../../**/*.ts"],
"exclude": [
"../../packages/react",
"../../packages/vue-2",
"../../packages/vue-3",
"../../packages/extension-code-block-lowlight"
]
}