Vue3通透教程TS编译配置
在Vue 3中,使用TypeScript需要进行一些额外的配置。以下是一个基本的tsconfig.json
配置示例,它适用于Vue 3项目:
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
"types": [
"webpack-env",
"vue/test-utils"
],
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
"exclude": [
"node_modules"
]
}
这个配置文件设置了TypeScript编译器的目标为ESNEXT,启用了JSX的支持,启用了实验性的装饰器,并且配置了模块解析策略和基本的库文件。它还指定了项目中的包含和排除文件,并定义了一个别名@/*
来代表src/*
。这样可以简化在项目中导入路径时的写法。
评论已关闭