create-vite-extra 4.2.0 → 5.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +12 -6
- package/README.md +51 -66
- package/dist/index.js +585 -0
- package/package.json +20 -10
- package/template-deno-lit/README.md +3 -3
- package/template-deno-lit/deno.json +3 -3
- package/template-deno-lit/index.html +2 -2
- package/template-deno-lit/public/favicon.svg +1 -0
- package/template-deno-lit/public/icons.svg +24 -0
- package/template-deno-lit/src/assets/hero.png +0 -0
- package/template-deno-lit/src/index.css +14 -20
- package/template-deno-lit/src/my-element.js +372 -67
- package/template-deno-lit/vite.config.js +1 -1
- package/template-deno-lit-ts/README.md +2 -2
- package/template-deno-lit-ts/deno.json +3 -3
- package/template-deno-lit-ts/index.html +3 -3
- package/template-deno-lit-ts/public/favicon.svg +1 -0
- package/template-deno-lit-ts/public/icons.svg +24 -0
- package/template-deno-lit-ts/src/assets/hero.png +0 -0
- package/template-deno-lit-ts/src/index.css +13 -28
- package/template-deno-lit-ts/src/my-element.ts +373 -68
- package/template-deno-lit-ts/tsconfig.json +20 -2
- package/template-deno-lit-ts/vite.config.ts +1 -1
- package/template-deno-preact/README.md +2 -2
- package/template-deno-preact/deno.json +5 -5
- package/template-deno-preact/index.html +1 -1
- package/template-deno-preact/public/favicon.svg +1 -0
- package/template-deno-preact/public/icons.svg +24 -0
- package/template-deno-preact/src/app.css +185 -16
- package/template-deno-preact/src/app.jsx +88 -21
- package/template-deno-preact/src/assets/hero.png +0 -0
- package/template-deno-preact/src/index.css +88 -46
- package/template-deno-preact/src/main.jsx +1 -1
- package/template-deno-preact-ts/README.md +2 -2
- package/template-deno-preact-ts/deno.json +5 -5
- package/template-deno-preact-ts/index.html +1 -1
- package/template-deno-preact-ts/public/favicon.svg +1 -0
- package/template-deno-preact-ts/public/icons.svg +24 -0
- package/template-deno-preact-ts/src/app.css +185 -16
- package/template-deno-preact-ts/src/app.tsx +88 -21
- package/template-deno-preact-ts/src/assets/hero.png +0 -0
- package/template-deno-preact-ts/src/index.css +88 -46
- package/template-deno-preact-ts/src/main.tsx +2 -2
- package/template-deno-react/README.md +2 -2
- package/template-deno-react/deno.json +5 -5
- package/template-deno-react/index.html +1 -1
- package/template-deno-react/public/favicon.svg +1 -0
- package/template-deno-react/public/icons.svg +24 -0
- package/template-deno-react/src/App.css +169 -28
- package/template-deno-react/src/App.jsx +107 -21
- package/template-deno-react/src/assets/hero.png +0 -0
- package/template-deno-react/src/index.css +88 -46
- package/template-deno-react/src/main.jsx +1 -1
- package/template-deno-react-ts/README.md +2 -2
- package/template-deno-react-ts/deno.json +5 -5
- package/template-deno-react-ts/index.html +1 -1
- package/template-deno-react-ts/public/favicon.svg +1 -0
- package/template-deno-react-ts/public/icons.svg +24 -0
- package/template-deno-react-ts/src/App.css +169 -28
- package/template-deno-react-ts/src/App.tsx +107 -21
- package/template-deno-react-ts/src/assets/hero.png +0 -0
- package/template-deno-react-ts/src/index.css +88 -46
- package/template-deno-react-ts/src/main.tsx +2 -2
- package/template-deno-solid/README.md +2 -2
- package/template-deno-solid/deno.json +5 -5
- package/template-deno-solid/index.html +2 -2
- package/template-deno-solid/public/favicon.svg +1 -0
- package/template-deno-solid/public/icons.svg +24 -0
- package/template-deno-solid/src/App.css +175 -19
- package/template-deno-solid/src/App.jsx +90 -23
- package/template-deno-solid/src/assets/hero.png +0 -0
- package/template-deno-solid/src/index.css +88 -46
- package/template-deno-solid/src/index.jsx +8 -0
- package/template-deno-solid-ts/README.md +2 -2
- package/template-deno-solid-ts/deno.json +5 -5
- package/template-deno-solid-ts/index.html +2 -2
- package/template-deno-solid-ts/public/favicon.svg +1 -0
- package/template-deno-solid-ts/public/icons.svg +24 -0
- package/template-deno-solid-ts/src/App.css +175 -19
- package/template-deno-solid-ts/src/App.tsx +90 -23
- package/template-deno-solid-ts/src/assets/hero.png +0 -0
- package/template-deno-solid-ts/src/index.css +88 -46
- package/template-deno-solid-ts/src/index.tsx +8 -0
- package/template-deno-svelte/README.md +2 -2
- package/template-deno-svelte/deno.json +5 -5
- package/template-deno-svelte/index.html +1 -1
- package/template-deno-svelte/public/favicon.svg +1 -0
- package/template-deno-svelte/public/icons.svg +24 -0
- package/template-deno-svelte/src/App.svelte +79 -38
- package/template-deno-svelte/src/app.css +263 -47
- package/template-deno-svelte/src/assets/hero.png +0 -0
- package/template-deno-svelte/src/lib/Counter.svelte +1 -6
- package/template-deno-svelte/src/main.js +1 -1
- package/template-deno-svelte-ts/README.md +2 -2
- package/template-deno-svelte-ts/deno.json +5 -5
- package/template-deno-svelte-ts/index.html +1 -1
- package/template-deno-svelte-ts/public/favicon.svg +1 -0
- package/template-deno-svelte-ts/public/icons.svg +24 -0
- package/template-deno-svelte-ts/src/App.svelte +80 -39
- package/template-deno-svelte-ts/src/app.css +263 -47
- package/template-deno-svelte-ts/src/assets/hero.png +0 -0
- package/template-deno-svelte-ts/src/lib/Counter.svelte +2 -2
- package/template-deno-svelte-ts/src/main.ts +1 -1
- package/template-deno-vanilla/deno.json +3 -3
- package/template-deno-vanilla/index.html +2 -2
- package/template-deno-vanilla/public/favicon.svg +1 -0
- package/template-deno-vanilla/public/icons.svg +24 -0
- package/template-deno-vanilla/src/assets/hero.png +0 -0
- package/template-deno-vanilla/src/assets/javascript.svg +1 -0
- package/template-deno-vanilla/src/counter.js +2 -2
- package/template-deno-vanilla/src/main.js +51 -17
- package/template-deno-vanilla/src/style.css +260 -61
- package/template-deno-vanilla-ts/deno.json +3 -3
- package/template-deno-vanilla-ts/index.html +1 -1
- package/template-deno-vanilla-ts/public/favicon.svg +1 -0
- package/template-deno-vanilla-ts/public/icons.svg +24 -0
- package/template-deno-vanilla-ts/src/assets/hero.png +0 -0
- package/template-deno-vanilla-ts/src/assets/typescript.svg +1 -0
- package/template-deno-vanilla-ts/src/counter.ts +1 -1
- package/template-deno-vanilla-ts/src/main.ts +52 -16
- package/template-deno-vanilla-ts/src/style.css +260 -61
- package/template-deno-vue/README.md +2 -2
- package/template-deno-vue/deno.json +5 -5
- package/template-deno-vue/index.html +1 -1
- package/template-deno-vue/public/favicon.svg +1 -0
- package/template-deno-vue/public/icons.svg +24 -0
- package/template-deno-vue/src/App.vue +1 -28
- package/template-deno-vue/src/assets/hero.png +0 -0
- package/template-deno-vue/src/components/HelloWorld.vue +83 -30
- package/template-deno-vue/src/main.js +1 -1
- package/template-deno-vue/src/style.css +263 -46
- package/template-deno-vue-ts/README.md +2 -2
- package/template-deno-vue-ts/deno.json +5 -5
- package/template-deno-vue-ts/index.html +1 -1
- package/template-deno-vue-ts/public/favicon.svg +1 -0
- package/template-deno-vue-ts/public/icons.svg +24 -0
- package/template-deno-vue-ts/src/App.vue +1 -28
- package/template-deno-vue-ts/src/assets/hero.png +0 -0
- package/template-deno-vue-ts/src/components/HelloWorld.vue +83 -28
- package/template-deno-vue-ts/src/main.ts +1 -1
- package/template-deno-vue-ts/src/style.css +263 -46
- package/template-library/index.d.ts +1 -1
- package/template-library/index.html +3 -3
- package/template-library/package.json +5 -9
- package/template-library/public/favicon.svg +1 -0
- package/template-library/public/icons.svg +24 -0
- package/template-library/src/assets/hero.png +0 -0
- package/template-library/src/assets/javascript.svg +1 -0
- package/template-library/src/main.js +60 -0
- package/template-library/src/style.css +296 -0
- package/template-library/vite.config.js +1 -1
- package/template-library-ts/index.d.ts +1 -1
- package/template-library-ts/index.html +2 -2
- package/template-library-ts/package.json +6 -10
- package/template-library-ts/public/favicon.svg +1 -0
- package/template-library-ts/public/icons.svg +24 -0
- package/template-library-ts/src/assets/hero.png +0 -0
- package/template-library-ts/src/assets/typescript.svg +1 -0
- package/template-library-ts/src/main.ts +51 -14
- package/template-library-ts/src/style.css +260 -61
- package/template-library-ts/tsconfig.json +6 -7
- package/template-library-ts/vite.config.ts +1 -1
- package/template-ssr-preact/index.html +1 -1
- package/template-ssr-preact/package.json +4 -4
- package/template-ssr-preact/public/favicon.svg +1 -0
- package/template-ssr-preact/public/icons.svg +24 -0
- package/template-ssr-preact/src/app.css +185 -17
- package/template-ssr-preact/src/app.jsx +88 -20
- package/template-ssr-preact/src/assets/hero.png +0 -0
- package/template-ssr-preact/src/index.css +88 -46
- package/template-ssr-preact-ts/index.html +1 -1
- package/template-ssr-preact-ts/package.json +7 -7
- package/template-ssr-preact-ts/public/favicon.svg +1 -0
- package/template-ssr-preact-ts/public/icons.svg +24 -0
- package/template-ssr-preact-ts/src/app.css +185 -17
- package/template-ssr-preact-ts/src/app.tsx +88 -20
- package/template-ssr-preact-ts/src/assets/hero.png +0 -0
- package/template-ssr-preact-ts/src/index.css +88 -46
- package/template-ssr-preact-ts/tsconfig.app.json +30 -0
- package/template-ssr-preact-ts/tsconfig.json +5 -29
- package/template-ssr-preact-ts/tsconfig.node.json +5 -5
- package/template-ssr-react/README.md +16 -0
- package/template-ssr-react/index.html +1 -1
- package/template-ssr-react/package.json +3 -3
- package/template-ssr-react/public/favicon.svg +1 -0
- package/template-ssr-react/public/icons.svg +24 -0
- package/template-ssr-react/src/App.css +169 -28
- package/template-ssr-react/src/App.jsx +107 -20
- package/template-ssr-react/src/assets/hero.png +0 -0
- package/template-ssr-react/src/index.css +88 -46
- package/template-ssr-react-streaming/index.html +1 -1
- package/template-ssr-react-streaming/package.json +2 -2
- package/template-ssr-react-streaming/public/favicon.svg +1 -0
- package/template-ssr-react-streaming/public/icons.svg +24 -0
- package/template-ssr-react-streaming/src/App.css +169 -28
- package/template-ssr-react-streaming/src/App.jsx +107 -20
- package/template-ssr-react-streaming/src/assets/hero.png +0 -0
- package/template-ssr-react-streaming/src/index.css +88 -46
- package/template-ssr-react-streaming-ts/index.html +1 -1
- package/template-ssr-react-streaming-ts/package.json +6 -6
- package/template-ssr-react-streaming-ts/public/favicon.svg +1 -0
- package/template-ssr-react-streaming-ts/public/icons.svg +24 -0
- package/template-ssr-react-streaming-ts/src/App.css +169 -28
- package/template-ssr-react-streaming-ts/src/App.tsx +107 -20
- package/template-ssr-react-streaming-ts/src/assets/hero.png +0 -0
- package/template-ssr-react-streaming-ts/src/index.css +88 -46
- package/template-ssr-react-streaming-ts/tsconfig.app.json +25 -0
- package/template-ssr-react-streaming-ts/tsconfig.json +5 -24
- package/template-ssr-react-streaming-ts/tsconfig.node.json +5 -5
- package/template-ssr-react-ts/README.md +73 -0
- package/template-ssr-react-ts/index.html +1 -1
- package/template-ssr-react-ts/package.json +6 -6
- package/template-ssr-react-ts/public/favicon.svg +1 -0
- package/template-ssr-react-ts/public/icons.svg +24 -0
- package/template-ssr-react-ts/src/App.css +169 -28
- package/template-ssr-react-ts/src/App.tsx +107 -20
- package/template-ssr-react-ts/src/assets/hero.png +0 -0
- package/template-ssr-react-ts/src/index.css +88 -46
- package/template-ssr-react-ts/tsconfig.app.json +25 -0
- package/template-ssr-react-ts/tsconfig.json +5 -24
- package/template-ssr-react-ts/tsconfig.node.json +5 -5
- package/template-ssr-solid/README.md +28 -0
- package/template-ssr-solid/index.html +1 -1
- package/template-ssr-solid/package.json +3 -3
- package/template-ssr-solid/public/favicon.svg +1 -0
- package/template-ssr-solid/public/icons.svg +24 -0
- package/template-ssr-solid/src/App.css +175 -19
- package/template-ssr-solid/src/App.jsx +90 -22
- package/template-ssr-solid/src/assets/hero.png +0 -0
- package/template-ssr-solid/src/index.css +88 -46
- package/template-ssr-solid-ts/README.md +28 -0
- package/template-ssr-solid-ts/index.html +1 -1
- package/template-ssr-solid-ts/package.json +5 -5
- package/template-ssr-solid-ts/public/favicon.svg +1 -0
- package/template-ssr-solid-ts/public/icons.svg +24 -0
- package/template-ssr-solid-ts/src/App.css +175 -19
- package/template-ssr-solid-ts/src/App.tsx +90 -22
- package/template-ssr-solid-ts/src/assets/hero.png +0 -0
- package/template-ssr-solid-ts/src/index.css +88 -46
- package/template-ssr-solid-ts/tsconfig.app.json +26 -0
- package/template-ssr-solid-ts/tsconfig.json +5 -25
- package/template-ssr-solid-ts/tsconfig.node.json +5 -5
- package/template-ssr-svelte/README.md +0 -4
- package/template-ssr-svelte/index.html +1 -1
- package/template-ssr-svelte/package.json +3 -3
- package/template-ssr-svelte/public/favicon.svg +1 -0
- package/template-ssr-svelte/public/icons.svg +24 -0
- package/template-ssr-svelte/src/App.svelte +79 -37
- package/template-ssr-svelte/src/app.css +263 -47
- package/template-ssr-svelte/src/assets/hero.png +0 -0
- package/template-ssr-svelte/src/lib/Counter.svelte +1 -6
- package/template-ssr-svelte-ts/README.md +1 -1
- package/template-ssr-svelte-ts/index.html +1 -1
- package/template-ssr-svelte-ts/package.json +9 -9
- package/template-ssr-svelte-ts/public/favicon.svg +1 -0
- package/template-ssr-svelte-ts/public/icons.svg +24 -0
- package/template-ssr-svelte-ts/src/App.svelte +80 -38
- package/template-ssr-svelte-ts/src/app.css +263 -47
- package/template-ssr-svelte-ts/src/assets/hero.png +0 -0
- package/template-ssr-svelte-ts/src/lib/Counter.svelte +2 -2
- package/template-ssr-svelte-ts/tsconfig.app.json +20 -0
- package/template-ssr-svelte-ts/tsconfig.json +5 -19
- package/template-ssr-svelte-ts/tsconfig.node.json +16 -4
- package/template-ssr-transform/package.json +1 -1
- package/template-ssr-vanilla/index.html +2 -2
- package/template-ssr-vanilla/package.json +1 -1
- package/template-ssr-vanilla/public/favicon.svg +1 -0
- package/template-ssr-vanilla/public/icons.svg +24 -0
- package/template-ssr-vanilla/src/assets/hero.png +0 -0
- package/template-ssr-vanilla/src/assets/javascript.svg +1 -0
- package/template-ssr-vanilla/src/counter.js +1 -1
- package/template-ssr-vanilla/src/entry-client.js +0 -1
- package/template-ssr-vanilla/src/entry-server.js +52 -15
- package/template-ssr-vanilla/src/style.css +260 -61
- package/template-ssr-vanilla-ts/index.html +1 -1
- package/template-ssr-vanilla-ts/package.json +4 -4
- package/template-ssr-vanilla-ts/public/favicon.svg +1 -0
- package/template-ssr-vanilla-ts/public/icons.svg +24 -0
- package/template-ssr-vanilla-ts/src/assets/hero.png +0 -0
- package/template-ssr-vanilla-ts/src/assets/typescript.svg +1 -0
- package/template-ssr-vanilla-ts/src/counter.ts +1 -1
- package/template-ssr-vanilla-ts/src/entry-client.ts +0 -1
- package/template-ssr-vanilla-ts/src/entry-server.ts +52 -15
- package/template-ssr-vanilla-ts/src/style.css +260 -61
- package/template-ssr-vanilla-ts/tsconfig.json +6 -7
- package/template-ssr-vue/README.md +1 -3
- package/template-ssr-vue/index.html +1 -1
- package/template-ssr-vue/package.json +3 -3
- package/template-ssr-vue/public/favicon.svg +1 -0
- package/template-ssr-vue/public/icons.svg +24 -0
- package/template-ssr-vue/src/App.vue +1 -27
- package/template-ssr-vue/src/assets/hero.png +0 -0
- package/template-ssr-vue/src/components/HelloWorld.vue +83 -30
- package/template-ssr-vue/src/style.css +263 -46
- package/template-ssr-vue-streaming/index.html +1 -1
- package/template-ssr-vue-streaming/package.json +3 -3
- package/template-ssr-vue-streaming/public/favicon.svg +1 -0
- package/template-ssr-vue-streaming/public/icons.svg +24 -0
- package/template-ssr-vue-streaming/src/App.vue +1 -27
- package/template-ssr-vue-streaming/src/assets/hero.png +0 -0
- package/template-ssr-vue-streaming/src/components/HelloWorld.vue +83 -30
- package/template-ssr-vue-streaming/src/style.css +263 -46
- package/template-ssr-vue-streaming-ts/index.html +1 -1
- package/template-ssr-vue-streaming-ts/package.json +8 -7
- package/template-ssr-vue-streaming-ts/public/favicon.svg +1 -0
- package/template-ssr-vue-streaming-ts/public/icons.svg +24 -0
- package/template-ssr-vue-streaming-ts/src/App.vue +1 -27
- package/template-ssr-vue-streaming-ts/src/assets/hero.png +0 -0
- package/template-ssr-vue-streaming-ts/src/components/HelloWorld.vue +83 -28
- package/template-ssr-vue-streaming-ts/src/style.css +263 -46
- package/template-ssr-vue-streaming-ts/tsconfig.app.json +14 -0
- package/template-ssr-vue-streaming-ts/tsconfig.json +5 -24
- package/template-ssr-vue-streaming-ts/tsconfig.node.json +5 -5
- package/template-ssr-vue-ts/README.md +1 -12
- package/template-ssr-vue-ts/index.html +1 -1
- package/template-ssr-vue-ts/package.json +9 -9
- package/template-ssr-vue-ts/public/favicon.svg +1 -0
- package/template-ssr-vue-ts/public/icons.svg +24 -0
- package/template-ssr-vue-ts/src/App.vue +1 -27
- package/template-ssr-vue-ts/src/assets/hero.png +0 -0
- package/template-ssr-vue-ts/src/components/HelloWorld.vue +83 -28
- package/template-ssr-vue-ts/src/style.css +263 -46
- package/template-ssr-vue-ts/tsconfig.app.json +14 -0
- package/template-ssr-vue-ts/tsconfig.json +5 -24
- package/template-ssr-vue-ts/tsconfig.node.json +5 -5
- package/index.js +0 -708
- package/template-deno-lit-ts/src/vite-env.d.ts +0 -1
- package/template-deno-preact-ts/src/vite-env.d.ts +0 -1
- package/template-deno-react-ts/src/vite-env.d.ts +0 -1
- package/template-deno-svelte/src/vite-env.d.ts +0 -2
- package/template-deno-svelte-ts/src/vite-env.d.ts +0 -2
- package/template-deno-vanilla-ts/src/vite-env.d.ts +0 -1
- package/template-deno-vue-ts/src/vite-env.d.ts +0 -7
- package/template-library/main.js +0 -23
- package/template-library/style.css +0 -97
- package/template-library-ts/src/vite-env.d.ts +0 -1
- package/template-ssr-preact-ts/src/vite-env.d.ts +0 -1
- package/template-ssr-react-streaming-ts/src/vite-env.d.ts +0 -1
- package/template-ssr-react-ts/src/vite-env.d.ts +0 -1
- package/template-ssr-solid-ts/src/vite-env.d.ts +0 -1
- package/template-ssr-svelte/src/vite-env.d.ts +0 -2
- package/template-ssr-svelte-ts/src/vite-env.d.ts +0 -2
- package/template-ssr-vanilla-ts/src/vite-env.d.ts +0 -1
- package/template-ssr-vue-streaming-ts/src/vite-env.d.ts +0 -7
- package/template-ssr-vue-ts/src/vite-env.d.ts +0 -7
- /package/template-deno-lit/{public → src/assets}/vite.svg +0 -0
- /package/template-deno-lit-ts/{public → src/assets}/vite.svg +0 -0
- /package/template-deno-preact/{public → src/assets}/vite.svg +0 -0
- /package/template-deno-preact-ts/{public → src/assets}/vite.svg +0 -0
- /package/template-deno-react/{public → src/assets}/vite.svg +0 -0
- /package/template-deno-react-ts/{public → src/assets}/vite.svg +0 -0
- /package/template-deno-solid/{public → src/assets}/vite.svg +0 -0
- /package/template-deno-solid-ts/{public → src/assets}/vite.svg +0 -0
- /package/template-deno-svelte/{public → src/assets}/vite.svg +0 -0
- /package/template-deno-svelte-ts/{public → src/assets}/vite.svg +0 -0
- /package/template-deno-vanilla/{public → src/assets}/vite.svg +0 -0
- /package/template-deno-vanilla-ts/{public → src/assets}/vite.svg +0 -0
- /package/template-deno-vue/{public → src/assets}/vite.svg +0 -0
- /package/template-deno-vue-ts/{public → src/assets}/vite.svg +0 -0
- /package/template-library/{public → src/assets}/vite.svg +0 -0
- /package/template-library/{javascript.svg → src/javascript.svg} +0 -0
- /package/template-library-ts/{public → src/assets}/vite.svg +0 -0
- /package/template-ssr-preact/{public → src/assets}/vite.svg +0 -0
- /package/template-ssr-preact-ts/{public → src/assets}/vite.svg +0 -0
- /package/template-ssr-react/{public → src/assets}/vite.svg +0 -0
- /package/template-ssr-react-streaming/{public → src/assets}/vite.svg +0 -0
- /package/template-ssr-react-streaming-ts/{public → src/assets}/vite.svg +0 -0
- /package/template-ssr-react-ts/{public → src/assets}/vite.svg +0 -0
- /package/template-ssr-solid/{public → src/assets}/vite.svg +0 -0
- /package/template-ssr-solid-ts/{public → src/assets}/vite.svg +0 -0
- /package/template-ssr-svelte/{public → src/assets}/vite.svg +0 -0
- /package/template-ssr-svelte-ts/{public → src/assets}/vite.svg +0 -0
- /package/template-ssr-vanilla/{public → src/assets}/vite.svg +0 -0
- /package/template-ssr-vanilla-ts/{public → src/assets}/vite.svg +0 -0
- /package/template-ssr-vue/{public → src/assets}/vite.svg +0 -0
- /package/template-ssr-vue-streaming/{public → src/assets}/vite.svg +0 -0
- /package/template-ssr-vue-streaming-ts/{public → src/assets}/vite.svg +0 -0
- /package/template-ssr-vue-ts/{public → src/assets}/vite.svg +0 -0
|
@@ -1,33 +1,7 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
// This starter template is using Vue 3 <script setup> SFCs
|
|
3
|
-
// Check out https://vuejs.org/api/sfc-script-setup.html#script-setup
|
|
4
2
|
import HelloWorld from './components/HelloWorld.vue'
|
|
5
3
|
</script>
|
|
6
4
|
|
|
7
5
|
<template>
|
|
8
|
-
<
|
|
9
|
-
<a href="https://vite.dev" target="_blank">
|
|
10
|
-
<img src="/vite.svg" class="logo" alt="Vite logo" />
|
|
11
|
-
</a>
|
|
12
|
-
<a href="https://vuejs.org/" target="_blank">
|
|
13
|
-
<img src="./assets/vue.svg" class="logo vue" alt="Vue logo" />
|
|
14
|
-
</a>
|
|
15
|
-
</div>
|
|
16
|
-
<HelloWorld msg="Vite + Vue" />
|
|
6
|
+
<HelloWorld />
|
|
17
7
|
</template>
|
|
18
|
-
|
|
19
|
-
<style scoped>
|
|
20
|
-
.logo {
|
|
21
|
-
object-fit: contain;
|
|
22
|
-
width: 8em;
|
|
23
|
-
height: 6em;
|
|
24
|
-
padding: 1.5em;
|
|
25
|
-
will-change: filter;
|
|
26
|
-
}
|
|
27
|
-
.logo:hover {
|
|
28
|
-
filter: drop-shadow(0 0 2em #646cffaa);
|
|
29
|
-
}
|
|
30
|
-
.logo.vue:hover {
|
|
31
|
-
filter: drop-shadow(0 0 2em #42b883aa);
|
|
32
|
-
}
|
|
33
|
-
</style>
|
|
Binary file
|
|
@@ -1,38 +1,93 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
2
|
import { ref } from 'vue'
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
import viteLogo from '../assets/vite.svg'
|
|
4
|
+
import heroImg from '../assets/hero.png'
|
|
5
|
+
import vueLogo from '../assets/vue.svg'
|
|
5
6
|
|
|
6
7
|
const count = ref(0)
|
|
7
8
|
</script>
|
|
8
9
|
|
|
9
10
|
<template>
|
|
10
|
-
<
|
|
11
|
+
<section id="center">
|
|
12
|
+
<div class="hero">
|
|
13
|
+
<img :src="heroImg" class="base" width="170" height="179" alt="" />
|
|
14
|
+
<img :src="vueLogo" class="framework" alt="Vue logo" />
|
|
15
|
+
<img :src="viteLogo" class="vite" alt="Vite logo" />
|
|
16
|
+
</div>
|
|
17
|
+
<div>
|
|
18
|
+
<h1>Get started</h1>
|
|
19
|
+
<p>Edit <code>src/App.vue</code> and save to test <code>HMR</code></p>
|
|
20
|
+
</div>
|
|
21
|
+
<button class="counter" @click="count++">Count is {{ count }}</button>
|
|
22
|
+
</section>
|
|
11
23
|
|
|
12
|
-
<div class="
|
|
13
|
-
<button type="button" @click="count++">count is {{ count }}</button>
|
|
14
|
-
<p>
|
|
15
|
-
Edit
|
|
16
|
-
<code>components/HelloWorld.vue</code> to test HMR
|
|
17
|
-
</p>
|
|
18
|
-
</div>
|
|
24
|
+
<div class="ticks"></div>
|
|
19
25
|
|
|
20
|
-
<
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
</
|
|
26
|
+
<section id="next-steps">
|
|
27
|
+
<div id="docs">
|
|
28
|
+
<svg class="icon" role="presentation" aria-hidden="true">
|
|
29
|
+
<use href="/icons.svg#documentation-icon"></use>
|
|
30
|
+
</svg>
|
|
31
|
+
<h2>Documentation</h2>
|
|
32
|
+
<p>Your questions, answered</p>
|
|
33
|
+
<ul>
|
|
34
|
+
<li>
|
|
35
|
+
<a href="https://vite.dev/" target="_blank">
|
|
36
|
+
<img class="logo" :src="viteLogo" alt="" />
|
|
37
|
+
Explore Vite
|
|
38
|
+
</a>
|
|
39
|
+
</li>
|
|
40
|
+
<li>
|
|
41
|
+
<a href="https://vuejs.org/" target="_blank">
|
|
42
|
+
<img class="button-icon" :src="vueLogo" alt="" />
|
|
43
|
+
Learn more
|
|
44
|
+
</a>
|
|
45
|
+
</li>
|
|
46
|
+
</ul>
|
|
47
|
+
</div>
|
|
48
|
+
<div id="social">
|
|
49
|
+
<svg class="icon" role="presentation" aria-hidden="true">
|
|
50
|
+
<use href="/icons.svg#social-icon"></use>
|
|
51
|
+
</svg>
|
|
52
|
+
<h2>Connect with us</h2>
|
|
53
|
+
<p>Join the Vite community</p>
|
|
54
|
+
<ul>
|
|
55
|
+
<li>
|
|
56
|
+
<a href="https://github.com/vitejs/vite" target="_blank">
|
|
57
|
+
<svg class="button-icon" role="presentation" aria-hidden="true">
|
|
58
|
+
<use href="/icons.svg#github-icon"></use>
|
|
59
|
+
</svg>
|
|
60
|
+
GitHub
|
|
61
|
+
</a>
|
|
62
|
+
</li>
|
|
63
|
+
<li>
|
|
64
|
+
<a href="https://chat.vite.dev/" target="_blank">
|
|
65
|
+
<svg class="button-icon" role="presentation" aria-hidden="true">
|
|
66
|
+
<use href="/icons.svg#discord-icon"></use>
|
|
67
|
+
</svg>
|
|
68
|
+
Discord
|
|
69
|
+
</a>
|
|
70
|
+
</li>
|
|
71
|
+
<li>
|
|
72
|
+
<a href="https://x.com/vite_js" target="_blank">
|
|
73
|
+
<svg class="button-icon" role="presentation" aria-hidden="true">
|
|
74
|
+
<use href="/icons.svg#x-icon"></use>
|
|
75
|
+
</svg>
|
|
76
|
+
X.com
|
|
77
|
+
</a>
|
|
78
|
+
</li>
|
|
79
|
+
<li>
|
|
80
|
+
<a href="https://bsky.app/profile/vite.dev" target="_blank">
|
|
81
|
+
<svg class="button-icon" role="presentation" aria-hidden="true">
|
|
82
|
+
<use href="/icons.svg#bluesky-icon"></use>
|
|
83
|
+
</svg>
|
|
84
|
+
Bluesky
|
|
85
|
+
</a>
|
|
86
|
+
</li>
|
|
87
|
+
</ul>
|
|
88
|
+
</div>
|
|
89
|
+
</section>
|
|
33
90
|
|
|
34
|
-
<
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
}
|
|
38
|
-
</style>
|
|
91
|
+
<div class="ticks"></div>
|
|
92
|
+
<section id="spacer"></section>
|
|
93
|
+
</template>
|
|
@@ -1,79 +1,296 @@
|
|
|
1
1
|
:root {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
--text: #6b6375;
|
|
3
|
+
--text-h: #08060d;
|
|
4
|
+
--bg: #fff;
|
|
5
|
+
--border: #e5e4e7;
|
|
6
|
+
--code-bg: #f4f3ec;
|
|
7
|
+
--accent: #aa3bff;
|
|
8
|
+
--accent-bg: rgba(170, 59, 255, 0.1);
|
|
9
|
+
--accent-border: rgba(170, 59, 255, 0.5);
|
|
10
|
+
--social-bg: rgba(244, 243, 236, 0.5);
|
|
11
|
+
--shadow:
|
|
12
|
+
rgba(0, 0, 0, 0.1) 0 10px 15px -3px, rgba(0, 0, 0, 0.05) 0 4px 6px -2px;
|
|
5
13
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
14
|
+
--sans: system-ui, 'Segoe UI', Roboto, sans-serif;
|
|
15
|
+
--heading: system-ui, 'Segoe UI', Roboto, sans-serif;
|
|
16
|
+
--mono: ui-monospace, Consolas, monospace;
|
|
9
17
|
|
|
18
|
+
font: 18px/145% var(--sans);
|
|
19
|
+
letter-spacing: 0.18px;
|
|
20
|
+
color-scheme: light dark;
|
|
21
|
+
color: var(--text);
|
|
22
|
+
background: var(--bg);
|
|
10
23
|
font-synthesis: none;
|
|
11
24
|
text-rendering: optimizeLegibility;
|
|
12
25
|
-webkit-font-smoothing: antialiased;
|
|
13
26
|
-moz-osx-font-smoothing: grayscale;
|
|
14
|
-
}
|
|
15
27
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
text-decoration: inherit;
|
|
28
|
+
@media (max-width: 1024px) {
|
|
29
|
+
font-size: 16px;
|
|
30
|
+
}
|
|
20
31
|
}
|
|
21
|
-
|
|
22
|
-
|
|
32
|
+
|
|
33
|
+
@media (prefers-color-scheme: dark) {
|
|
34
|
+
:root {
|
|
35
|
+
--text: #9ca3af;
|
|
36
|
+
--text-h: #f3f4f6;
|
|
37
|
+
--bg: #16171d;
|
|
38
|
+
--border: #2e303a;
|
|
39
|
+
--code-bg: #1f2028;
|
|
40
|
+
--accent: #c084fc;
|
|
41
|
+
--accent-bg: rgba(192, 132, 252, 0.15);
|
|
42
|
+
--accent-border: rgba(192, 132, 252, 0.5);
|
|
43
|
+
--social-bg: rgba(47, 48, 58, 0.5);
|
|
44
|
+
--shadow:
|
|
45
|
+
rgba(0, 0, 0, 0.4) 0 10px 15px -3px, rgba(0, 0, 0, 0.25) 0 4px 6px -2px;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
#social .button-icon {
|
|
49
|
+
filter: invert(1) brightness(2);
|
|
50
|
+
}
|
|
23
51
|
}
|
|
24
52
|
|
|
25
53
|
body {
|
|
26
54
|
margin: 0;
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
h1,
|
|
58
|
+
h2 {
|
|
59
|
+
font-family: var(--heading);
|
|
60
|
+
font-weight: 500;
|
|
61
|
+
color: var(--text-h);
|
|
31
62
|
}
|
|
32
63
|
|
|
33
64
|
h1 {
|
|
34
|
-
font-size:
|
|
35
|
-
|
|
65
|
+
font-size: 56px;
|
|
66
|
+
letter-spacing: -1.68px;
|
|
67
|
+
margin: 32px 0;
|
|
68
|
+
@media (max-width: 1024px) {
|
|
69
|
+
font-size: 36px;
|
|
70
|
+
margin: 20px 0;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
h2 {
|
|
74
|
+
font-size: 24px;
|
|
75
|
+
line-height: 118%;
|
|
76
|
+
letter-spacing: -0.24px;
|
|
77
|
+
margin: 0 0 8px;
|
|
78
|
+
@media (max-width: 1024px) {
|
|
79
|
+
font-size: 20px;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
p {
|
|
83
|
+
margin: 0;
|
|
36
84
|
}
|
|
37
85
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
font-family: inherit;
|
|
45
|
-
background-color: #1a1a1a;
|
|
46
|
-
cursor: pointer;
|
|
47
|
-
transition: border-color 0.25s;
|
|
86
|
+
code,
|
|
87
|
+
.counter {
|
|
88
|
+
font-family: var(--mono);
|
|
89
|
+
display: inline-flex;
|
|
90
|
+
border-radius: 4px;
|
|
91
|
+
color: var(--text-h);
|
|
48
92
|
}
|
|
49
|
-
|
|
50
|
-
|
|
93
|
+
|
|
94
|
+
code {
|
|
95
|
+
font-size: 15px;
|
|
96
|
+
line-height: 135%;
|
|
97
|
+
padding: 4px 8px;
|
|
98
|
+
background: var(--code-bg);
|
|
51
99
|
}
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
100
|
+
|
|
101
|
+
.counter {
|
|
102
|
+
font-size: 16px;
|
|
103
|
+
padding: 5px 10px;
|
|
104
|
+
border-radius: 5px;
|
|
105
|
+
color: var(--accent);
|
|
106
|
+
background: var(--accent-bg);
|
|
107
|
+
border: 2px solid transparent;
|
|
108
|
+
transition: border-color 0.3s;
|
|
109
|
+
margin-bottom: 24px;
|
|
110
|
+
|
|
111
|
+
&:hover {
|
|
112
|
+
border-color: var(--accent-border);
|
|
113
|
+
}
|
|
114
|
+
&:focus-visible {
|
|
115
|
+
outline: 2px solid var(--accent);
|
|
116
|
+
outline-offset: 2px;
|
|
117
|
+
}
|
|
55
118
|
}
|
|
56
119
|
|
|
57
|
-
.
|
|
58
|
-
|
|
120
|
+
.hero {
|
|
121
|
+
position: relative;
|
|
122
|
+
|
|
123
|
+
.base,
|
|
124
|
+
.framework,
|
|
125
|
+
.vite {
|
|
126
|
+
inset-inline: 0;
|
|
127
|
+
margin: 0 auto;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.base {
|
|
131
|
+
width: 170px;
|
|
132
|
+
position: relative;
|
|
133
|
+
z-index: 0;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.framework,
|
|
137
|
+
.vite {
|
|
138
|
+
position: absolute;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.framework {
|
|
142
|
+
z-index: 1;
|
|
143
|
+
top: 34px;
|
|
144
|
+
height: 28px;
|
|
145
|
+
transform: perspective(2000px) rotateZ(300deg) rotateX(44deg) rotateY(39deg)
|
|
146
|
+
scale(1.4);
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.vite {
|
|
150
|
+
z-index: 0;
|
|
151
|
+
top: 107px;
|
|
152
|
+
height: 26px;
|
|
153
|
+
width: auto;
|
|
154
|
+
transform: perspective(2000px) rotateZ(300deg) rotateX(40deg) rotateY(39deg)
|
|
155
|
+
scale(0.8);
|
|
156
|
+
}
|
|
59
157
|
}
|
|
60
158
|
|
|
61
159
|
#app {
|
|
62
|
-
|
|
160
|
+
width: 1126px;
|
|
161
|
+
max-width: 100%;
|
|
63
162
|
margin: 0 auto;
|
|
64
|
-
padding: 2rem;
|
|
65
163
|
text-align: center;
|
|
164
|
+
border-inline: 1px solid var(--border);
|
|
165
|
+
min-height: 100svh;
|
|
166
|
+
display: flex;
|
|
167
|
+
flex-direction: column;
|
|
168
|
+
box-sizing: border-box;
|
|
66
169
|
}
|
|
67
170
|
|
|
68
|
-
|
|
69
|
-
:
|
|
70
|
-
|
|
71
|
-
|
|
171
|
+
#center {
|
|
172
|
+
display: flex;
|
|
173
|
+
flex-direction: column;
|
|
174
|
+
gap: 25px;
|
|
175
|
+
place-content: center;
|
|
176
|
+
place-items: center;
|
|
177
|
+
flex-grow: 1;
|
|
178
|
+
|
|
179
|
+
@media (max-width: 1024px) {
|
|
180
|
+
padding: 32px 20px 24px;
|
|
181
|
+
gap: 18px;
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
#next-steps {
|
|
186
|
+
display: flex;
|
|
187
|
+
border-top: 1px solid var(--border);
|
|
188
|
+
text-align: left;
|
|
189
|
+
|
|
190
|
+
& > div {
|
|
191
|
+
flex: 1 1 0;
|
|
192
|
+
padding: 32px;
|
|
193
|
+
@media (max-width: 1024px) {
|
|
194
|
+
padding: 24px 20px;
|
|
195
|
+
}
|
|
72
196
|
}
|
|
73
|
-
|
|
74
|
-
|
|
197
|
+
|
|
198
|
+
.icon {
|
|
199
|
+
margin-bottom: 16px;
|
|
200
|
+
width: 22px;
|
|
201
|
+
height: 22px;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
@media (max-width: 1024px) {
|
|
205
|
+
flex-direction: column;
|
|
206
|
+
text-align: center;
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
#docs {
|
|
211
|
+
border-right: 1px solid var(--border);
|
|
212
|
+
|
|
213
|
+
@media (max-width: 1024px) {
|
|
214
|
+
border-right: none;
|
|
215
|
+
border-bottom: 1px solid var(--border);
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
#next-steps ul {
|
|
220
|
+
list-style: none;
|
|
221
|
+
padding: 0;
|
|
222
|
+
display: flex;
|
|
223
|
+
gap: 8px;
|
|
224
|
+
margin: 32px 0 0;
|
|
225
|
+
|
|
226
|
+
.logo {
|
|
227
|
+
height: 18px;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
a {
|
|
231
|
+
color: var(--text-h);
|
|
232
|
+
font-size: 16px;
|
|
233
|
+
border-radius: 6px;
|
|
234
|
+
background: var(--social-bg);
|
|
235
|
+
display: flex;
|
|
236
|
+
padding: 6px 12px;
|
|
237
|
+
align-items: center;
|
|
238
|
+
gap: 8px;
|
|
239
|
+
text-decoration: none;
|
|
240
|
+
transition: box-shadow 0.3s;
|
|
241
|
+
|
|
242
|
+
&:hover {
|
|
243
|
+
box-shadow: var(--shadow);
|
|
244
|
+
}
|
|
245
|
+
.button-icon {
|
|
246
|
+
height: 18px;
|
|
247
|
+
width: 18px;
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
@media (max-width: 1024px) {
|
|
252
|
+
margin-top: 20px;
|
|
253
|
+
flex-wrap: wrap;
|
|
254
|
+
justify-content: center;
|
|
255
|
+
|
|
256
|
+
li {
|
|
257
|
+
flex: 1 1 calc(50% - 8px);
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
a {
|
|
261
|
+
width: 100%;
|
|
262
|
+
justify-content: center;
|
|
263
|
+
box-sizing: border-box;
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
#spacer {
|
|
269
|
+
height: 88px;
|
|
270
|
+
border-top: 1px solid var(--border);
|
|
271
|
+
@media (max-width: 1024px) {
|
|
272
|
+
height: 48px;
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.ticks {
|
|
277
|
+
position: relative;
|
|
278
|
+
width: 100%;
|
|
279
|
+
|
|
280
|
+
&::before,
|
|
281
|
+
&::after {
|
|
282
|
+
content: '';
|
|
283
|
+
position: absolute;
|
|
284
|
+
top: -4.5px;
|
|
285
|
+
border: 5px solid transparent;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
&::before {
|
|
289
|
+
left: 0;
|
|
290
|
+
border-left-color: var(--border);
|
|
75
291
|
}
|
|
76
|
-
|
|
77
|
-
|
|
292
|
+
&::after {
|
|
293
|
+
right: 0;
|
|
294
|
+
border-right-color: var(--border);
|
|
78
295
|
}
|
|
79
296
|
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
5
|
+
"types": ["vite/client"],
|
|
6
|
+
|
|
7
|
+
/* Linting */
|
|
8
|
+
"noUnusedLocals": true,
|
|
9
|
+
"noUnusedParameters": true,
|
|
10
|
+
"erasableSyntaxOnly": true,
|
|
11
|
+
"noFallthroughCasesInSwitch": true
|
|
12
|
+
},
|
|
13
|
+
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"]
|
|
14
|
+
}
|
|
@@ -1,26 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
|
|
7
|
-
"skipLibCheck": true,
|
|
8
|
-
|
|
9
|
-
/* Bundler mode */
|
|
10
|
-
"moduleResolution": "bundler",
|
|
11
|
-
"allowImportingTsExtensions": true,
|
|
12
|
-
"isolatedModules": true,
|
|
13
|
-
"moduleDetection": "force",
|
|
14
|
-
"noEmit": true,
|
|
15
|
-
"jsx": "preserve",
|
|
16
|
-
|
|
17
|
-
/* Linting */
|
|
18
|
-
"strict": true,
|
|
19
|
-
"noUnusedLocals": true,
|
|
20
|
-
"noUnusedParameters": true,
|
|
21
|
-
"noFallthroughCasesInSwitch": true,
|
|
22
|
-
"noUncheckedSideEffectImports": true
|
|
23
|
-
},
|
|
24
|
-
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"],
|
|
25
|
-
"references": [{ "path": "./tsconfig.node.json" }]
|
|
2
|
+
"files": [],
|
|
3
|
+
"references": [
|
|
4
|
+
{ "path": "./tsconfig.app.json" },
|
|
5
|
+
{ "path": "./tsconfig.node.json" }
|
|
6
|
+
]
|
|
26
7
|
}
|
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
|
-
"composite": true,
|
|
4
3
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
|
5
4
|
"target": "es2023",
|
|
6
5
|
"lib": ["ES2023"],
|
|
7
6
|
"module": "esnext",
|
|
7
|
+
"types": ["node"],
|
|
8
8
|
"skipLibCheck": true,
|
|
9
9
|
|
|
10
10
|
/* Bundler mode */
|
|
11
11
|
"moduleResolution": "bundler",
|
|
12
12
|
"allowImportingTsExtensions": true,
|
|
13
|
-
"
|
|
13
|
+
"verbatimModuleSyntax": true,
|
|
14
14
|
"moduleDetection": "force",
|
|
15
|
+
"noEmit": true,
|
|
15
16
|
|
|
16
17
|
/* Linting */
|
|
17
|
-
"strict": true,
|
|
18
18
|
"noUnusedLocals": true,
|
|
19
19
|
"noUnusedParameters": true,
|
|
20
|
-
"
|
|
21
|
-
"
|
|
20
|
+
"erasableSyntaxOnly": true,
|
|
21
|
+
"noFallthroughCasesInSwitch": true
|
|
22
22
|
},
|
|
23
23
|
"include": ["vite.config.ts"]
|
|
24
24
|
}
|