gaoluyang
6 天以前 92230c9a97dc9ce9df3313d11d26999c04bb6b26
tsconfig.json
对比新文件
@@ -0,0 +1,26 @@
{
  "exclude": ["node_modules"],
  "compilerOptions": {
    "noImplicitAny": true,
    "importHelpers": true,
    "strict": true,
    "forceConsistentCasingInFileNames": true,
    "downlevelIteration": true,
    "outDir": "dist/compiled",
    "baseUrl": "./",
    "allowSyntheticDefaultImports": true,
    "allowJs": true,
    "jsx": "preserve",
    "moduleResolution": "node",
    "module": "ES2022",
    "lib": ["ES2020", "dom"],
    "declaration": true,
    "paths": {
      "@": ["src"],
      "@/*": ["src/*"],
      "/@/*": ["src/*"],
      "vue": ["node_modules/vue"],
      "tslib": ["node_modules/tslib/tslib.d.ts"]
    }
  }
}