chenyong
2025-06-03 69201c9b19ef266bfbfcd8a98822ee527064a46a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "extends": "@vue/tsconfig/tsconfig.web.json",
  "include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
  "compilerOptions": {
    "baseUrl": ".",
    "allowJs": true,//js文件忽略提示
    "paths": {
      "@/*": ["./src/*"]
    }
  },
 
  "references": [
    {
      "path": "./tsconfig.node.json"
    }
  ]
}