Skip to content
Snippets Groups Projects
tsconfig.json 337 B
Newer Older
  • Learn to ignore specific revisions
  • Daniel Göbel's avatar
    Daniel Göbel committed
    {
    
      "extends": [
        "@tsconfig/node18/tsconfig.json",
        "@vue/tsconfig/tsconfig.json"
      ],
    
    Daniel Göbel's avatar
    Daniel Göbel committed
      "include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
      "compilerOptions": {
    
        "lib": ["...", "dom"],
        "allowSyntheticDefaultImports": true,
    
    Daniel Göbel's avatar
    Daniel Göbel committed
        "baseUrl": ".",
    
        "types": ["node"],
    
    Daniel Göbel's avatar
    Daniel Göbel committed
        "paths": {
          "@/*": ["./src/*"]
        }
      },
    }