vscode的jsconfig.json和tsconfig.js

jsconfig.json

{
    "compilerOptions": {
        "baseUrl": ".",
        "paths": {
            // 解决项目中使用@做为路径别名,致使vscode没法跳转文件的问题
            "@/*": ["src/*"]
        },
        // 解决prettier对于装饰器语法的警告
        "experimentalDecorators": true,
        // 解决.jsx文件没法快速跳转的问题
        "jsx": "preserve"
    },
    "exclude": ["node_modules", "dist", "build"]
}

tsconfig.json

占位