tiptap/tsconfig.json
Dominik 243c6ab0d2
Move back from tsup/esbuild to rollup (#3720)
* 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
2023-02-08 11:12:43 +01:00

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"
]
}