fix types for demos

This commit is contained in:
Philipp Kühn
2021-09-16 21:30:09 +02:00
parent ba283bcd43
commit 2a0a365d45
7 changed files with 320 additions and 23 deletions

View File

@@ -9,10 +9,11 @@
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"useDefineForClassFields": true,
"sourceMap": true,
"baseUrl": ".",
"rootDir": ".",
"allowJs": false,
"allowJs": true,
"checkJs": false,
"paths": {
"@tiptap/*": ["packages/*/dist", "packages/*/src"]
@@ -24,16 +25,15 @@
"scripthost"
]
},
"files": [
"./shims/vue.d.ts"
],
"include": [
"**/*.ts",
"**/*.tsx"
"**/*.d.ts",
"**/*.tsx",
"**/*.vue"
],
"exclude": [
"**/node_modules",
"**/dist",
"**/vue-3"
"**/vue-2"
]
}