mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-27 14:59:27 +08:00
28 lines
715 B
JSON
28 lines
715 B
JSON
{
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"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/*/src", "packages/*/dist"]
|
|
},
|
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
|
|
},
|
|
"files": ["./env.d.ts"],
|
|
"include": ["**/*.d.ts", "**/*.ts", "**/*.tsx", "**/*.vue"],
|
|
"exclude": ["**/node_modules", "**/dist"]
|
|
}
|