15 | Edit
16 | components/HelloWorld.vue to test HMR
17 |
21 | Check out 22 | create-vue, the official Vue + Vite starter 25 |
26 |27 | Install 28 | Volar 29 | in your IDE for a better DX 30 |
31 |Click on the Vite and Vue logos to learn more
32 | 33 | 34 | 39 | -------------------------------------------------------------------------------- /packages/accessibility/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "exclude": ["./**/*.spec.*","./**/_stories/.*","./**/_stories/.*","./**/__stories__/.*", 3 | "./main.ts", "../script/*", 4 | "./Comp1", 5 | "./App.tsx", 6 | "./**/__test__", 7 | "./test/*", 8 | "./*.ts" 9 | ], 10 | "compilerOptions": { 11 | "rootDir": "./src", 12 | "outDir": "./dist/types", 13 | "target": "esnext", 14 | "useDefineForClassFields": true, 15 | "module": "esnext", 16 | "moduleResolution": "node", 17 | "strict": true, 18 | "jsx": "preserve", 19 | "jsxImportSource": "vue", 20 | "jsxFactory": "h", 21 | "jsxFragmentFactory": "Fragment", 22 | "strictNullChecks": false, 23 | "sourceMap": true, 24 | "declaration": true, 25 | "emitDeclarationOnly": true, 26 | "resolveJsonModule": true, 27 | "esModuleInterop": true, 28 | "types": ["vite/client", "node"], 29 | "lib": ["esnext", "dom"], 30 | "noImplicitAny": false 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 |