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