Some checks failed
Vue3 Build and Serve (Persistent) / build-and-serve (push) Failing after 3s
- Created package.json with dependencies for Vue, Vue Router, and Element Plus. - Added favicon.ico for branding. - Implemented main App.vue with navigation and HelloWorld component. - Created base CSS for styling and main CSS for layout. - Added logo.svg for the application logo. - Developed HelloWorld component to display a greeting message. - Created TheWelcome component with multiple WelcomeItem components for project guidance. - Added WelcomeItem component for structured welcome messages. - Implemented various icons for documentation, tooling, ecosystem, community, and support. - Set up main.ts for application entry point and router integration. - Configured router with Home and About views. - Developed AboutView and HomeView components for routing. - Added TypeScript configuration files for app and node. - Configured Vite for development server and Vue plugin integration.
20 lines
414 B
JSON
20 lines
414 B
JSON
{
|
|
"extends": "@tsconfig/node22/tsconfig.json",
|
|
"include": [
|
|
"vite.config.*",
|
|
"vitest.config.*",
|
|
"cypress.config.*",
|
|
"nightwatch.conf.*",
|
|
"playwright.config.*",
|
|
"eslint.config.*"
|
|
],
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
|
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"types": ["node"]
|
|
}
|
|
}
|