mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-18 04:57:49 +08:00
e46f8e3334
* chore:(core): migrate to tsup * chore: migrate blockquote and bold to tsup * chore: migrated bubble-menu and bullet-list to tsup * chore: migrated more packages to tsup * chore: migrate code and character extensions to tsup * chore: update package.json to simplify build for all packages * chore: move all packages to tsup as a build process * chore: change ci build task * chore: clean up and fix issues related to new build * fix: fix demo build * fix: fix demo build * fix: fix tsconfig files to reference only one source * fix: fix minor ts issues
27 lines
695 B
JSON
27 lines
695 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"]
|
|
}
|