tiptap/tsconfig.json

42 lines
779 B
JSON
Raw Normal View History

2019-12-08 07:16:44 +08:00
{
"compilerOptions": {
"target": "esnext",
"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"
]
},
"include": [
2020-04-17 18:51:49 +08:00
"docs/src/**/*.ts",
"docs/src/**/*.tsx",
"docs/src/**/*.vue",
2019-12-08 07:16:44 +08:00
"packages/**/*.ts",
"packages/**/*.tsx",
"packages/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
"exclude": [
"node_modules"
]
}