{
  "compilerOptions": {
    "target": "esnext",
    "module": "esnext",
    "moduleResolution": "node",
    "strict": true,
    "esModuleInterop": true,
    "skipLibCheck": true,
    "forceConsistentCasingInFileNames": true,
    "declaration": true,
    "declarationDir": "./dist", // Directory for declaration files
    "outDir": "./dist", // Directory for JavaScript output
    "sourceMap": true,
    "allowJs": true,
    "jsx": "preserve",
    "lib": ["dom", "esnext"],
    "types": [], // removed "webpack-env" from the "types" array in compilerOptions of tsconfig.json to eliminate unnecessary type definitions for a Vite project.
    "baseUrl": ".",
    "paths": {
      "@/*": ["src/*"]
    }
  },
  "include": ["src/**/*.ts", "src/**/*.js", "src/**/*.vue"],
  "exclude": ["node_modules"]
}
