Files
biggy 97908db3e0 refactor: migrate project to Vue 3 with TypeScript and Vite
- Updated index.html to use Vite and Vue 3.
- Changed package.json to reflect new dependencies and build scripts.
- Removed old favicon.svg and added new vite.svg.
- Deleted unused PWA assets configuration.
- Created new App.vue component and HelloWorld.vue component.
- Added Vue logo and Vite logo to App.vue.
- Removed old JavaScript files and replaced with TypeScript files.
- Updated styles in style.css for better layout.
- Added TypeScript configuration files for better type checking.
- Migrated Vite configuration from JavaScript to TypeScript.
2025-05-23 17:36:26 +02:00

26 lines
630 B
JSON

{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"target": "ES2022",
"lib": ["ES2023"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
"include": ["vite.config.ts"]
}