tiptap/tsconfig.json

36 lines
622 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,
"baseUrl": ".",
2020-04-14 16:13:27 +08:00
"allowJs": false,
"checkJs": false,
2019-12-08 07:16:44 +08:00
"paths": {
"@/*": [
"packages/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
2020-04-24 15:32:37 +08:00
"files": [
"./shims/vue.d.ts"
],
2019-12-08 07:16:44 +08:00
"exclude": [
2020-08-21 05:25:55 +08:00
"node_modules",
"dist"
2019-12-08 07:16:44 +08:00
]
}