tiptap/tsconfig.json

38 lines
695 B
JSON
Raw 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,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"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": ".",
2020-04-14 16:13:27 +08:00
"allowJs": false,
"checkJs": false,
2019-12-08 07:16:44 +08:00
"paths": {
2020-11-16 19:27:10 +08:00
"@tiptap/*": ["packages/*/dist", "packages/*/src"]
2019-12-08 07:16:44 +08:00
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
2020-04-24 15:32:37 +08:00
"files": [
"./shims/vue.d.ts"
],
2020-11-10 23:29:31 +08:00
"include": [
"**/*.ts"
],
2019-12-08 07:16:44 +08:00
"exclude": [
2020-11-10 18:53:47 +08:00
"**/node_modules",
"**/dist"
2019-12-08 07:16:44 +08:00
]
}