tiptap/tsconfig.json

43 lines
785 B
JSON
Raw Permalink Normal View History

2019-12-08 07:16:44 +08:00
{
"compilerOptions": {
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,
"noEmit": true,
2019-12-08 07:16:44 +08:00
"paths": {
"@tiptap/*": ["packages/*/src", "packages/*/dist"]
2019-12-08 07:16:44 +08:00
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
2019-12-08 07:16:44 +08:00
},
"files": [
"./env.d.ts"
],
"include": [
"**/*.d.ts",
"**/*.ts",
"**/*.tsx",
"**/*.vue"
],
"exclude": [
"**/node_modules",
"**/dist"
]
2019-12-08 07:16:44 +08:00
}