mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-25 04:19:02 +08:00
40 lines
724 B
JSON
40 lines
724 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2019",
|
|
"module": "esnext",
|
|
"strict": true,
|
|
"jsx": "react",
|
|
"importHelpers": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"rootDir": ".",
|
|
"allowJs": false,
|
|
"checkJs": false,
|
|
"paths": {
|
|
"@tiptap/*": ["packages/*/dist", "packages/*/src"]
|
|
},
|
|
"lib": [
|
|
"esnext",
|
|
"dom",
|
|
"dom.iterable",
|
|
"scripthost"
|
|
]
|
|
},
|
|
"files": [
|
|
"./shims/vue.d.ts"
|
|
],
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"**/node_modules",
|
|
"**/dist",
|
|
"**/vue-3"
|
|
]
|
|
}
|