@truenewx/tnxvue3
Version:
互联网技术解决方案:Vue3扩展支持
35 lines (34 loc) • 708 B
JSON
{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "Bundler",
"emitDeclarationOnly": true,
"declaration": true,
"declarationMap": true,
"outDir": "types",
"allowImportingTsExtensions": true,
"strict": false,
"noImplicitAny": false,
"allowJs": false,
"resolveJsonModule": true,
"esModuleInterop": true,
"skipLibCheck": true,
"lib": [
"ES2020",
"DOM"
],
"types": [],
"baseUrl": ".",
"paths": {
"@/*": [
"src/*"
]
}
},
"include": [
"src/**/*.ts",
"sample/**/*.ts",
"node_modules/tdesign-vue-next/global.d.ts"
]
}