vue3-animate-number
Version:
## Project setup ``` npm install ```
43 lines (42 loc) • 841 B
JSON
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
"declaration": true,// 是否生成声明文件
"declarationDir": "dist/lib",// 声明文件打包的位置
"types": [
"webpack-env"
],
"paths": {
"@/*": [
"example/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"example/**/*.ts",
"example/**/*.tsx",
"example/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
"exclude": [
"node_modules"
]
}