refactor: improve types

This commit is contained in:
三咲智子 Kevin Deng
2023-08-01 15:00:51 +08:00
parent 86ba932a03
commit 768fb3ec2a
6 changed files with 18 additions and 16 deletions

View File

@ -1,6 +1,5 @@
{
"compilerOptions": {
"sourceMap": true,
"target": "ESNext",
"module": "ESNext",
"lib": ["ES2015", "DOM", "DOM.Iterable"],
@ -10,13 +9,14 @@
"noUnusedLocals": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"removeComments": false,
"jsx": "preserve",
"types": ["vitest/globals"],
"skipLibCheck": true,
"paths": {
"@vue/babel-plugin-jsx": ["./packages/babel-plugin-jsx/src"]
}
},
"noEmit": true,
"incremental": true
},
"include": ["packages/*/src", "packages/*/test"]
}