mirror of
https://github.com/ueberdosis/tiptap.git
synced 2026-09-14 16:14:40 +08:00
1d205165bd
* chore!: remove deprecated package aliases Remove the legacy package workspace and all build, alias, release, and test references before v4. BREAKING CHANGE: v4 no longer publishes the deprecated package aliases from packages-deprecated. * update changeset * chore: change changeset bump type * fix: fix README link * chore: update changeset
30 lines
903 B
JSON
30 lines
903 B
JSON
{
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"target": "es2019",
|
|
"module": "nodenext",
|
|
"strict": true,
|
|
"jsx": "react-jsx",
|
|
"importHelpers": true,
|
|
"moduleResolution": "nodenext",
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"sourceMap": true,
|
|
"rootDir": ".",
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"paths": {
|
|
"@tiptap/static-renderer/pm/*": ["packages/static-renderer/src/pm/*"],
|
|
"@tiptap/static-renderer/json/*": ["packages/static-renderer/src/json/*"],
|
|
"@tiptap/pm/*": ["packages/pm/*/index.ts"],
|
|
"@tiptap/*": ["packages/*/src/index.ts"]
|
|
},
|
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
|
|
},
|
|
"files": ["./env.d.ts"],
|
|
"include": ["**/*.d.ts", "**/*.ts", "**/*.tsx", "**/*.vue"],
|
|
"exclude": ["**/node_modules", "**/dist"]
|
|
}
|