mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-24 03:31:47 +08:00
243c6ab0d2
* fix: bring back global rollup config * fix: add rollup build for packages except pm * fix: rollup global build * fix: fix memory leak on build * fix(character-count): revert files * fix: builds run individual per rollup and lerna * chore: remove old rollup * fix(blockquote): correct the main module path * fix(character count): bump version number
42 lines
765 B
JSON
42 lines
765 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2019",
|
|
"module": "esnext",
|
|
"strict": true,
|
|
"jsx": "react",
|
|
"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"
|
|
]
|
|
}
|