check ts correctly on demo build

This commit is contained in:
Philipp Kühn
2021-09-17 23:44:01 +02:00
parent 35cf2aee4c
commit ddc4986df1
22 changed files with 90 additions and 36 deletions

21
demos/tsconfig.base.json Normal file
View File

@@ -0,0 +1,21 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"skipLibCheck": true,
"types": [
"node"
]
},
"include": [
"../packages/*/src/**/*.d.ts",
"../packages/*/src/**/*.ts",
"../packages/*/src/**/*.tsx",
"../packages/*/src/**/*.vue"
],
"exclude": [
"../packages/react",
"../packages/vue-2",
"../packages/vue-3",
"../packages/extension-code-block-lowlight"
]
}