2019-12-08 07:16:44 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2024-08-07 17:59:44 +08:00
|
|
|
"noEmit": true,
|
2020-10-01 01:19:42 +08:00
|
|
|
"target": "es2019",
|
2019-12-08 07:16:44 +08:00
|
|
|
"module": "esnext",
|
|
|
|
"strict": true,
|
2021-03-09 06:10:10 +08:00
|
|
|
"jsx": "react",
|
2019-12-08 07:16:44 +08:00
|
|
|
"importHelpers": true,
|
|
|
|
"moduleResolution": "node",
|
2021-09-20 15:32:39 +08:00
|
|
|
"resolveJsonModule": true,
|
2019-12-08 07:16:44 +08:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2020-03-11 17:02:47 +08:00
|
|
|
"experimentalDecorators": true,
|
2019-12-08 07:16:44 +08:00
|
|
|
"sourceMap": true,
|
2020-11-16 19:27:10 +08:00
|
|
|
"baseUrl": ".",
|
2020-11-16 19:41:45 +08:00
|
|
|
"rootDir": ".",
|
2021-09-17 03:30:09 +08:00
|
|
|
"allowJs": true,
|
2020-04-14 16:13:27 +08:00
|
|
|
"checkJs": false,
|
2019-12-08 07:16:44 +08:00
|
|
|
"paths": {
|
2024-08-07 17:59:44 +08:00
|
|
|
"@tiptap/*": ["packages/*/src", "packages/*/dist"]
|
2019-12-08 07:16:44 +08:00
|
|
|
},
|
2024-11-11 22:25:02 +08:00
|
|
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
|
2019-12-08 07:16:44 +08:00
|
|
|
},
|
2024-11-11 22:25:02 +08:00
|
|
|
"files": ["./env.d.ts"],
|
|
|
|
"include": ["**/*.d.ts", "**/*.ts", "**/*.tsx", "**/*.vue"],
|
|
|
|
"exclude": ["**/node_modules", "**/dist"]
|
2019-12-08 07:16:44 +08:00
|
|
|
}
|