From 210bb84b1e1993b877c0e1539817da44d16868ef Mon Sep 17 00:00:00 2001 From: finn Date: Wed, 5 Jun 2024 13:40:59 -0700 Subject: [PATCH] more js cleanup --- javascript/book-reviews/.gitignore | 68 ++- javascript/dinger-completed/package.json | 5 +- .../dinger-completed/playwright.config.js | 50 +- javascript/dinger-starter/package.json | 5 +- .../dinger-starter/playwright.config.js | 50 +- javascript/fan-club-credential/.gitignore | 66 +++ javascript/shared-todo-completed/.gitignore | 66 +++ .../.nuxt/app.config.mjs | 20 - .../.nuxt/components.d.ts | 88 ---- .../shared-todo-completed/.nuxt/imports.d.ts | 28 -- .../shared-todo-completed/.nuxt/nuxt.d.ts | 20 - .../.nuxt/schema/nuxt.schema.d.ts | 17 - .../.nuxt/schema/nuxt.schema.json | 3 - .../shared-todo-completed/.nuxt/tsconfig.json | 103 ----- .../.nuxt/tsconfig.server.json | 73 --- .../.nuxt/types/app.config.d.ts | 33 -- .../.nuxt/types/imports.d.ts | 434 ------------------ .../.nuxt/types/layouts.d.ts | 7 - .../.nuxt/types/middleware.d.ts | 7 - .../.nuxt/types/nitro-config.d.ts | 14 - .../.nuxt/types/nitro-imports.d.ts | 124 ----- .../.nuxt/types/nitro-nuxt.d.ts | 26 -- .../.nuxt/types/nitro-routes.d.ts | 11 - .../.nuxt/types/nitro.d.ts | 3 - .../.nuxt/types/plugins.d.ts | 32 -- .../.nuxt/types/schema.d.ts | 25 - .../.nuxt/types/vue-shim.d.ts | 5 - .../.nuxt/vue-router-stub.d.ts | 1 - javascript/shared-todo-completed/package.json | 3 +- .../playwright.config.js | 50 +- javascript/shared-todo-starter/package.json | 3 +- .../shared-todo-starter/playwright.config.js | 50 +- javascript/todo-completed/package.json | 9 +- .../todo-completed/playwright.config.js | 50 +- javascript/todo-starter/package.json | 7 +- javascript/todo-starter/playwright.config.js | 50 +- 36 files changed, 221 insertions(+), 1385 deletions(-) create mode 100644 javascript/fan-club-credential/.gitignore create mode 100644 javascript/shared-todo-completed/.gitignore delete mode 100644 javascript/shared-todo-completed/.nuxt/app.config.mjs delete mode 100644 javascript/shared-todo-completed/.nuxt/components.d.ts delete mode 100644 javascript/shared-todo-completed/.nuxt/imports.d.ts delete mode 100644 javascript/shared-todo-completed/.nuxt/nuxt.d.ts delete mode 100644 javascript/shared-todo-completed/.nuxt/schema/nuxt.schema.d.ts delete mode 100644 javascript/shared-todo-completed/.nuxt/schema/nuxt.schema.json delete mode 100644 javascript/shared-todo-completed/.nuxt/tsconfig.json delete mode 100644 javascript/shared-todo-completed/.nuxt/tsconfig.server.json delete mode 100644 javascript/shared-todo-completed/.nuxt/types/app.config.d.ts delete mode 100644 javascript/shared-todo-completed/.nuxt/types/imports.d.ts delete mode 100644 javascript/shared-todo-completed/.nuxt/types/layouts.d.ts delete mode 100644 javascript/shared-todo-completed/.nuxt/types/middleware.d.ts delete mode 100644 javascript/shared-todo-completed/.nuxt/types/nitro-config.d.ts delete mode 100644 javascript/shared-todo-completed/.nuxt/types/nitro-imports.d.ts delete mode 100644 javascript/shared-todo-completed/.nuxt/types/nitro-nuxt.d.ts delete mode 100644 javascript/shared-todo-completed/.nuxt/types/nitro-routes.d.ts delete mode 100644 javascript/shared-todo-completed/.nuxt/types/nitro.d.ts delete mode 100644 javascript/shared-todo-completed/.nuxt/types/plugins.d.ts delete mode 100644 javascript/shared-todo-completed/.nuxt/types/schema.d.ts delete mode 100644 javascript/shared-todo-completed/.nuxt/types/vue-shim.d.ts delete mode 100644 javascript/shared-todo-completed/.nuxt/vue-router-stub.d.ts diff --git a/javascript/book-reviews/.gitignore b/javascript/book-reviews/.gitignore index f9059411..469addc4 100644 --- a/javascript/book-reviews/.gitignore +++ b/javascript/book-reviews/.gitignore @@ -1,2 +1,66 @@ -node_modules/ -DATA/ +# Dependencies +**/node_modules/ +.nuxt +.next + +# Production +/site/build +examples/web5-quickstart-widgets/bundle.js +/site/.env + +# Generated files +.docusaurus +.cache-loader +/site/snippets + +# IDE autogenerated +**/.idea +**/.vscode + +# Maven target dir +**/target + +# Maven binary Wrapper (we use source) +**/.mvn/wrapper/maven-wrapper.jar + +# Misc +.DS_Store +.env.local +.env.development.local +.env.test.local +.env.production.local + +npm-debug.log* +yarn-debug.log* +yarn-error.log* +/storybook-static +/src/pages/projects/tbdex-protocol/README.md +/src/pages/projects/tbdex-protocol/pfi-mock-impl/README.md +/src/pages/projects/tbdex-protocol/pfi-mock-impl/CONTRIBUTING.md +/src/pages/projects/tbdex-protocol/lib/README.md +/src/pages/projects/tbdex-protocol/did/README.md +/src/pages/projects/ssi-service/README.md +/src/pages/projects/ssi-sdk/README.md +/src/pages/projects/dwn-sdk-js/README.md + +# Local Netlify folder +.netlify + +# Ignore Web5 generated files for testing +/site/data +/site/DATASTORE +/site/EVENTLOG +/site/INDEX +/site/MESSAGESTORE + +data +DATA +DATASTORE +EVENTLOG +INDEX +MESSAGESTORE +.vercel +temp + +playwright-report +test-results diff --git a/javascript/dinger-completed/package.json b/javascript/dinger-completed/package.json index d01aab89..beb25f19 100644 --- a/javascript/dinger-completed/package.json +++ b/javascript/dinger-completed/package.json @@ -19,8 +19,5 @@ "react": "18", "react-dom": "18", "stream-browserify": "3.0.0" - }, - "devDependencies": { - "playwright": "^1.44.1" } -} +} \ No newline at end of file diff --git a/javascript/dinger-completed/playwright.config.js b/javascript/dinger-completed/playwright.config.js index 8b19bb63..cfe57c18 100644 --- a/javascript/dinger-completed/playwright.config.js +++ b/javascript/dinger-completed/playwright.config.js @@ -1,49 +1,3 @@ -const { devices } = require('playwright/test'); +import defaultPlaywrightConfig from '../../util/default-playwright-config'; -module.exports = { - timeout: 20000, - use: { - browserName: 'chromium', - headless: true, - viewport: { width: 1280, height: 720 }, - }, - reporter: [['html'], ['dot']], - testDir: './', - testMatch: '**/*.spec.js', - projects: [ - { - name: 'chromium', - use: { ...devices['Desktop Chrome'] }, - }, - { - name: 'firefox', - use: { ...devices['Desktop Firefox'] }, - }, - { - name: 'webkit', - use: { ...devices['Desktop Safari'] }, - }, - { - name: 'Mobile Chrome', - use: { ...devices['Pixel 5'] }, - }, - { - name: 'Mobile Safari', - use: { ...devices['iPhone 12'] }, - }, - { - name: 'Microsoft Edge', - use: { - ...devices['Desktop Edge'], - channel: 'msedge', - }, - }, - { - name: 'Google Chrome', - use: { - ...devices['Desktop Chrome'], - channel: 'chrome', - }, - }, - ], -}; +export default defaultPlaywrightConfig; diff --git a/javascript/dinger-starter/package.json b/javascript/dinger-starter/package.json index 09a18e0c..bd1bb9b5 100644 --- a/javascript/dinger-starter/package.json +++ b/javascript/dinger-starter/package.json @@ -18,8 +18,5 @@ "react": "18", "react-dom": "18", "stream-browserify": "3.0.0" - }, - "devDependencies": { - "playwright": "^1.44.1" } -} +} \ No newline at end of file diff --git a/javascript/dinger-starter/playwright.config.js b/javascript/dinger-starter/playwright.config.js index 8b19bb63..cfe57c18 100644 --- a/javascript/dinger-starter/playwright.config.js +++ b/javascript/dinger-starter/playwright.config.js @@ -1,49 +1,3 @@ -const { devices } = require('playwright/test'); +import defaultPlaywrightConfig from '../../util/default-playwright-config'; -module.exports = { - timeout: 20000, - use: { - browserName: 'chromium', - headless: true, - viewport: { width: 1280, height: 720 }, - }, - reporter: [['html'], ['dot']], - testDir: './', - testMatch: '**/*.spec.js', - projects: [ - { - name: 'chromium', - use: { ...devices['Desktop Chrome'] }, - }, - { - name: 'firefox', - use: { ...devices['Desktop Firefox'] }, - }, - { - name: 'webkit', - use: { ...devices['Desktop Safari'] }, - }, - { - name: 'Mobile Chrome', - use: { ...devices['Pixel 5'] }, - }, - { - name: 'Mobile Safari', - use: { ...devices['iPhone 12'] }, - }, - { - name: 'Microsoft Edge', - use: { - ...devices['Desktop Edge'], - channel: 'msedge', - }, - }, - { - name: 'Google Chrome', - use: { - ...devices['Desktop Chrome'], - channel: 'chrome', - }, - }, - ], -}; +export default defaultPlaywrightConfig; diff --git a/javascript/fan-club-credential/.gitignore b/javascript/fan-club-credential/.gitignore new file mode 100644 index 00000000..469addc4 --- /dev/null +++ b/javascript/fan-club-credential/.gitignore @@ -0,0 +1,66 @@ +# Dependencies +**/node_modules/ +.nuxt +.next + +# Production +/site/build +examples/web5-quickstart-widgets/bundle.js +/site/.env + +# Generated files +.docusaurus +.cache-loader +/site/snippets + +# IDE autogenerated +**/.idea +**/.vscode + +# Maven target dir +**/target + +# Maven binary Wrapper (we use source) +**/.mvn/wrapper/maven-wrapper.jar + +# Misc +.DS_Store +.env.local +.env.development.local +.env.test.local +.env.production.local + +npm-debug.log* +yarn-debug.log* +yarn-error.log* +/storybook-static +/src/pages/projects/tbdex-protocol/README.md +/src/pages/projects/tbdex-protocol/pfi-mock-impl/README.md +/src/pages/projects/tbdex-protocol/pfi-mock-impl/CONTRIBUTING.md +/src/pages/projects/tbdex-protocol/lib/README.md +/src/pages/projects/tbdex-protocol/did/README.md +/src/pages/projects/ssi-service/README.md +/src/pages/projects/ssi-sdk/README.md +/src/pages/projects/dwn-sdk-js/README.md + +# Local Netlify folder +.netlify + +# Ignore Web5 generated files for testing +/site/data +/site/DATASTORE +/site/EVENTLOG +/site/INDEX +/site/MESSAGESTORE + +data +DATA +DATASTORE +EVENTLOG +INDEX +MESSAGESTORE +.vercel +temp + +playwright-report +test-results diff --git a/javascript/shared-todo-completed/.gitignore b/javascript/shared-todo-completed/.gitignore new file mode 100644 index 00000000..469addc4 --- /dev/null +++ b/javascript/shared-todo-completed/.gitignore @@ -0,0 +1,66 @@ +# Dependencies +**/node_modules/ +.nuxt +.next + +# Production +/site/build +examples/web5-quickstart-widgets/bundle.js +/site/.env + +# Generated files +.docusaurus +.cache-loader +/site/snippets + +# IDE autogenerated +**/.idea +**/.vscode + +# Maven target dir +**/target + +# Maven binary Wrapper (we use source) +**/.mvn/wrapper/maven-wrapper.jar + +# Misc +.DS_Store +.env.local +.env.development.local +.env.test.local +.env.production.local + +npm-debug.log* +yarn-debug.log* +yarn-error.log* +/storybook-static +/src/pages/projects/tbdex-protocol/README.md +/src/pages/projects/tbdex-protocol/pfi-mock-impl/README.md +/src/pages/projects/tbdex-protocol/pfi-mock-impl/CONTRIBUTING.md +/src/pages/projects/tbdex-protocol/lib/README.md +/src/pages/projects/tbdex-protocol/did/README.md +/src/pages/projects/ssi-service/README.md +/src/pages/projects/ssi-sdk/README.md +/src/pages/projects/dwn-sdk-js/README.md + +# Local Netlify folder +.netlify + +# Ignore Web5 generated files for testing +/site/data +/site/DATASTORE +/site/EVENTLOG +/site/INDEX +/site/MESSAGESTORE + +data +DATA +DATASTORE +EVENTLOG +INDEX +MESSAGESTORE +.vercel +temp + +playwright-report +test-results diff --git a/javascript/shared-todo-completed/.nuxt/app.config.mjs b/javascript/shared-todo-completed/.nuxt/app.config.mjs deleted file mode 100644 index 1e3493d3..00000000 --- a/javascript/shared-todo-completed/.nuxt/app.config.mjs +++ /dev/null @@ -1,20 +0,0 @@ - -import { updateAppConfig } from '#app/config' -import { defuFn } from 'defu' - -const inlineConfig = { - "nuxt": { - "buildId": "beb2caf6-a4eb-43e8-b6b8-613b7859309b" - } -} - -// Vite - webpack is handled directly in #app/config -if (import.meta.hot) { - import.meta.hot.accept((newModule) => { - updateAppConfig(newModule.default) - }) -} - - - -export default /*@__PURE__*/ defuFn(inlineConfig) diff --git a/javascript/shared-todo-completed/.nuxt/components.d.ts b/javascript/shared-todo-completed/.nuxt/components.d.ts deleted file mode 100644 index a53cb92c..00000000 --- a/javascript/shared-todo-completed/.nuxt/components.d.ts +++ /dev/null @@ -1,88 +0,0 @@ -// Generated by components discovery -declare module 'vue' { - export interface GlobalComponents { - 'NuxtWelcome': typeof import("../../../../node_modules/.pnpm/@nuxt+ui-templates@1.3.1/node_modules/@nuxt/ui-templates/dist/templates/welcome.vue")['default'] - 'NuxtLayout': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/nuxt-layout")['default'] - 'NuxtErrorBoundary': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/nuxt-error-boundary")['default'] - 'ClientOnly': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/client-only")['default'] - 'DevOnly': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/dev-only")['default'] - 'ServerPlaceholder': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/server-placeholder")['default'] - 'NuxtLink': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/nuxt-link")['default'] - 'NuxtLoadingIndicator': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default'] - 'NuxtImg': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg'] - 'NuxtPicture': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture'] - 'NuxtPage': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/pages/runtime/page")['default'] - 'NoScript': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['NoScript'] - 'Link': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['Link'] - 'Base': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['Base'] - 'Title': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['Title'] - 'Meta': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['Meta'] - 'Style': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['Style'] - 'Head': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['Head'] - 'Html': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['Html'] - 'Body': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['Body'] - 'LazyNuxtWelcome': typeof import("../../../../node_modules/.pnpm/@nuxt+ui-templates@1.3.1/node_modules/@nuxt/ui-templates/dist/templates/welcome.vue")['default'] - 'LazyNuxtLayout': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/nuxt-layout")['default'] - 'LazyNuxtErrorBoundary': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/nuxt-error-boundary")['default'] - 'LazyClientOnly': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/client-only")['default'] - 'LazyDevOnly': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/dev-only")['default'] - 'LazyServerPlaceholder': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/server-placeholder")['default'] - 'LazyNuxtLink': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/nuxt-link")['default'] - 'LazyNuxtLoadingIndicator': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default'] - 'LazyNuxtImg': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg'] - 'LazyNuxtPicture': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture'] - 'LazyNuxtPage': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/pages/runtime/page")['default'] - 'LazyNoScript': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['NoScript'] - 'LazyLink': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['Link'] - 'LazyBase': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['Base'] - 'LazyTitle': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['Title'] - 'LazyMeta': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['Meta'] - 'LazyStyle': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['Style'] - 'LazyHead': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['Head'] - 'LazyHtml': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['Html'] - 'LazyBody': typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['Body'] - } -} - -export const NuxtWelcome: typeof import("../../../../node_modules/.pnpm/@nuxt+ui-templates@1.3.1/node_modules/@nuxt/ui-templates/dist/templates/welcome.vue")['default'] -export const NuxtLayout: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/nuxt-layout")['default'] -export const NuxtErrorBoundary: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/nuxt-error-boundary")['default'] -export const ClientOnly: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/client-only")['default'] -export const DevOnly: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/dev-only")['default'] -export const ServerPlaceholder: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/server-placeholder")['default'] -export const NuxtLink: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/nuxt-link")['default'] -export const NuxtLoadingIndicator: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default'] -export const NuxtImg: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg'] -export const NuxtPicture: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture'] -export const NuxtPage: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/pages/runtime/page")['default'] -export const NoScript: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['NoScript'] -export const Link: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['Link'] -export const Base: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['Base'] -export const Title: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['Title'] -export const Meta: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['Meta'] -export const Style: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['Style'] -export const Head: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['Head'] -export const Html: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['Html'] -export const Body: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['Body'] -export const LazyNuxtWelcome: typeof import("../../../../node_modules/.pnpm/@nuxt+ui-templates@1.3.1/node_modules/@nuxt/ui-templates/dist/templates/welcome.vue")['default'] -export const LazyNuxtLayout: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/nuxt-layout")['default'] -export const LazyNuxtErrorBoundary: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/nuxt-error-boundary")['default'] -export const LazyClientOnly: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/client-only")['default'] -export const LazyDevOnly: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/dev-only")['default'] -export const LazyServerPlaceholder: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/server-placeholder")['default'] -export const LazyNuxtLink: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/nuxt-link")['default'] -export const LazyNuxtLoadingIndicator: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default'] -export const LazyNuxtImg: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg'] -export const LazyNuxtPicture: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture'] -export const LazyNuxtPage: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/pages/runtime/page")['default'] -export const LazyNoScript: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['NoScript'] -export const LazyLink: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['Link'] -export const LazyBase: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['Base'] -export const LazyTitle: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['Title'] -export const LazyMeta: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['Meta'] -export const LazyStyle: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['Style'] -export const LazyHead: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['Head'] -export const LazyHtml: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['Html'] -export const LazyBody: typeof import("../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/head/runtime/components")['Body'] - -export const componentNames: string[] diff --git a/javascript/shared-todo-completed/.nuxt/imports.d.ts b/javascript/shared-todo-completed/.nuxt/imports.d.ts deleted file mode 100644 index d217405a..00000000 --- a/javascript/shared-todo-completed/.nuxt/imports.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -export { isVue2, isVue3 } from 'vue-demi'; -export { defineNuxtLink } from '#app/components/nuxt-link'; -export { useNuxtApp, tryUseNuxtApp, defineNuxtPlugin, definePayloadPlugin, useRuntimeConfig, defineAppConfig } from '#app/nuxt'; -export { requestIdleCallback, cancelIdleCallback } from '#app/compat/idle-callback'; -export { setInterval } from '#app/compat/interval'; -export { useAppConfig, updateAppConfig } from '#app/config'; -export { defineNuxtComponent } from '#app/composables/component'; -export { useAsyncData, useLazyAsyncData, useNuxtData, refreshNuxtData, clearNuxtData } from '#app/composables/asyncData'; -export { useHydration } from '#app/composables/hydrate'; -export { callOnce } from '#app/composables/once'; -export { useState, clearNuxtState } from '#app/composables/state'; -export { clearError, createError, isNuxtError, showError, useError } from '#app/composables/error'; -export { useFetch, useLazyFetch } from '#app/composables/fetch'; -export { useCookie, refreshCookie } from '#app/composables/cookie'; -export { prerenderRoutes, useRequestHeader, useRequestHeaders, useRequestEvent, useRequestFetch, setResponseStatus } from '#app/composables/ssr'; -export { onNuxtReady } from '#app/composables/ready'; -export { preloadComponents, prefetchComponents, preloadRouteComponents } from '#app/composables/preload'; -export { abortNavigation, addRouteMiddleware, defineNuxtRouteMiddleware, setPageLayout, navigateTo, useRoute, useRouter } from '#app/composables/router'; -export { isPrerendered, loadPayload, preloadPayload, definePayloadReducer, definePayloadReviver } from '#app/composables/payload'; -export { useLoadingIndicator } from '#app/composables/loading-indicator'; -export { getAppManifest, getRouteRules } from '#app/composables/manifest'; -export { reloadNuxtApp } from '#app/composables/chunk'; -export { useRequestURL } from '#app/composables/url'; -export { useId } from '#app/composables/id'; -export { onBeforeRouteLeave, onBeforeRouteUpdate, useLink } from '#vue-router'; -export { withCtx, withDirectives, withKeys, withMemo, withModifiers, withScopeId, onActivated, onBeforeMount, onBeforeUnmount, onBeforeUpdate, onDeactivated, onErrorCaptured, onMounted, onRenderTracked, onRenderTriggered, onServerPrefetch, onUnmounted, onUpdated, computed, customRef, isProxy, isReactive, isReadonly, isRef, markRaw, proxyRefs, reactive, readonly, ref, shallowReactive, shallowReadonly, shallowRef, toRaw, toRef, toRefs, triggerRef, unref, watch, watchEffect, watchPostEffect, watchSyncEffect, isShallow, effect, effectScope, getCurrentScope, onScopeDispose, defineComponent, defineAsyncComponent, resolveComponent, getCurrentInstance, h, inject, hasInjectionContext, nextTick, provide, defineModel, defineOptions, defineSlots, mergeModels, toValue, useModel, useAttrs, useCssModule, useCssVars, useSlots, useTransitionState, Component, ComponentPublicInstance, ComputedRef, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, MaybeRef, MaybeRefOrGetter, VNode } from 'vue'; -export { injectHead, useHead, useSeoMeta, useHeadSafe, useServerHead, useServerSeoMeta, useServerHeadSafe } from '@unhead/vue'; -export { definePageMeta } from '../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/pages/runtime/composables'; \ No newline at end of file diff --git a/javascript/shared-todo-completed/.nuxt/nuxt.d.ts b/javascript/shared-todo-completed/.nuxt/nuxt.d.ts deleted file mode 100644 index bfc69edf..00000000 --- a/javascript/shared-todo-completed/.nuxt/nuxt.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -// Generated by nuxi -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// -/// - -export {} diff --git a/javascript/shared-todo-completed/.nuxt/schema/nuxt.schema.d.ts b/javascript/shared-todo-completed/.nuxt/schema/nuxt.schema.d.ts deleted file mode 100644 index d9d266ce..00000000 --- a/javascript/shared-todo-completed/.nuxt/schema/nuxt.schema.d.ts +++ /dev/null @@ -1,17 +0,0 @@ -export interface NuxtCustomSchema { - -} -export type CustomAppConfig = Exclude -type _CustomAppConfig = CustomAppConfig - -declare module '@nuxt/schema' { - interface NuxtConfig extends Omit {} - interface NuxtOptions extends Omit {} - interface CustomAppConfig extends _CustomAppConfig {} -} - -declare module 'nuxt/schema' { - interface NuxtConfig extends Omit {} - interface NuxtOptions extends Omit {} - interface CustomAppConfig extends _CustomAppConfig {} -} diff --git a/javascript/shared-todo-completed/.nuxt/schema/nuxt.schema.json b/javascript/shared-todo-completed/.nuxt/schema/nuxt.schema.json deleted file mode 100644 index 034ff697..00000000 --- a/javascript/shared-todo-completed/.nuxt/schema/nuxt.schema.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "id": "#" -} \ No newline at end of file diff --git a/javascript/shared-todo-completed/.nuxt/tsconfig.json b/javascript/shared-todo-completed/.nuxt/tsconfig.json deleted file mode 100644 index a8c41309..00000000 --- a/javascript/shared-todo-completed/.nuxt/tsconfig.json +++ /dev/null @@ -1,103 +0,0 @@ -// Generated by nuxi -{ - "compilerOptions": { - "forceConsistentCasingInFileNames": true, - "jsx": "preserve", - "jsxImportSource": "vue", - "target": "ESNext", - "module": "ESNext", - "moduleResolution": "Node", - "skipLibCheck": true, - "isolatedModules": true, - "useDefineForClassFields": true, - "strict": true, - "noImplicitThis": true, - "esModuleInterop": true, - "types": [], - "verbatimModuleSyntax": true, - "allowJs": true, - "noEmit": true, - "resolveJsonModule": true, - "allowSyntheticDefaultImports": true, - "paths": { - "~": [ - ".." - ], - "~/*": [ - "../*" - ], - "@": [ - ".." - ], - "@/*": [ - "../*" - ], - "~~": [ - ".." - ], - "~~/*": [ - "../*" - ], - "@@": [ - ".." - ], - "@@/*": [ - "../*" - ], - "assets": [ - "../assets" - ], - "assets/*": [ - "../assets/*" - ], - "public": [ - "../public" - ], - "public/*": [ - "../public/*" - ], - "#app": [ - "../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app" - ], - "#app/*": [ - "../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/*" - ], - "vue-demi": [ - "../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/compat/vue-demi" - ], - "#vue-router": [ - "./vue-router-stub" - ], - "#imports": [ - "./imports" - ], - "#build": [ - "." - ], - "#build/*": [ - "./*" - ], - "#components": [ - "./components" - ] - } - }, - "include": [ - "./nuxt.d.ts", - "../**/*", - "../../../../node_modules/.pnpm/@nuxtjs+tailwindcss@6.8.0_rollup@2.61.1_webpack@5.90.3/node_modules/@nuxtjs/tailwindcss/runtime", - "../@nuxt/devtools/runtime", - "..", - "../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app", - "../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/compat/vue-demi" - ], - "exclude": [ - "../node_modules", - "../../../../node_modules", - "../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/node_modules", - "../../../../node_modules/.pnpm/@nuxtjs+tailwindcss@6.8.0_rollup@2.61.1_webpack@5.90.3/node_modules/@nuxtjs/tailwindcss/runtime/server", - "../@nuxt/devtools/runtime/server", - "../dist", - "../.output" - ] -} \ No newline at end of file diff --git a/javascript/shared-todo-completed/.nuxt/tsconfig.server.json b/javascript/shared-todo-completed/.nuxt/tsconfig.server.json deleted file mode 100644 index c3aa4757..00000000 --- a/javascript/shared-todo-completed/.nuxt/tsconfig.server.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "compilerOptions": { - "forceConsistentCasingInFileNames": true, - "strict": true, - "target": "ESNext", - "module": "ESNext", - "moduleResolution": "Bundler", - "allowJs": true, - "resolveJsonModule": true, - "jsx": "preserve", - "allowSyntheticDefaultImports": true, - "jsxFactory": "h", - "jsxFragmentFactory": "Fragment", - "paths": { - "#imports": [ - "./types/nitro-imports" - ], - "#paths": [ - "../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/core/runtime/nitro/paths" - ], - "~": [ - "./.." - ], - "~/*": [ - "../*" - ], - "@": [ - "./.." - ], - "@/*": [ - "../*" - ], - "~~": [ - "./.." - ], - "~~/*": [ - "../*" - ], - "@@": [ - "./.." - ], - "@@/*": [ - "../*" - ], - "assets": [ - "../assets" - ], - "assets/*": [ - "../assets/*" - ], - "public": [ - "../public" - ], - "public/*": [ - "../public/*" - ] - } - }, - "include": [ - "./types/nitro-nuxt.d.ts", - "../../../../node_modules/.pnpm/@nuxtjs+tailwindcss@6.8.0_rollup@2.61.1_webpack@5.90.3/node_modules/@nuxtjs/tailwindcss/runtime/server", - "../../../../node_modules/.pnpm/@nuxt+devtools@1.0.8_nuxt@3.10.3_rollup@2.61.1_vite@5.1.4/node_modules/@nuxt/devtools/runtime/server", - "./types/nitro.d.ts", - "../**/*", - "../server/**/*" - ], - "exclude": [ - "../node_modules", - "../../../../node_modules", - "../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/node_modules", - "../dist" - ] -} \ No newline at end of file diff --git a/javascript/shared-todo-completed/.nuxt/types/app.config.d.ts b/javascript/shared-todo-completed/.nuxt/types/app.config.d.ts deleted file mode 100644 index 6755abbb..00000000 --- a/javascript/shared-todo-completed/.nuxt/types/app.config.d.ts +++ /dev/null @@ -1,33 +0,0 @@ - -import type { CustomAppConfig } from 'nuxt/schema' -import type { Defu } from 'defu' - - -declare const inlineConfig = { - "nuxt": { - "buildId": "beb2caf6-a4eb-43e8-b6b8-613b7859309b" - } -} -type ResolvedAppConfig = Defu -type IsAny = 0 extends 1 & T ? true : false - -type MergedAppConfig, Custom extends Record> = { - [K in keyof (Resolved & Custom)]: K extends keyof Custom - ? unknown extends Custom[K] - ? Resolved[K] - : IsAny extends true - ? Resolved[K] - : Custom[K] extends Record - ? Resolved[K] extends Record - ? MergedAppConfig - : Exclude - : Exclude - : Resolved[K] -} - -declare module 'nuxt/schema' { - interface AppConfig extends MergedAppConfig { } -} -declare module '@nuxt/schema' { - interface AppConfig extends MergedAppConfig { } -} diff --git a/javascript/shared-todo-completed/.nuxt/types/imports.d.ts b/javascript/shared-todo-completed/.nuxt/types/imports.d.ts deleted file mode 100644 index 1cafd911..00000000 --- a/javascript/shared-todo-completed/.nuxt/types/imports.d.ts +++ /dev/null @@ -1,434 +0,0 @@ -// Generated by auto imports -export {} -declare global { - const abortNavigation: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/router')['abortNavigation'] - const addRouteMiddleware: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/router')['addRouteMiddleware'] - const callOnce: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/once')['callOnce'] - const cancelIdleCallback: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/compat/idle-callback')['cancelIdleCallback'] - const clearError: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/error')['clearError'] - const clearNuxtData: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/asyncData')['clearNuxtData'] - const clearNuxtState: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/state')['clearNuxtState'] - const computed: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['computed'] - const createError: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/error')['createError'] - const customRef: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['customRef'] - const defineAppConfig: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/nuxt')['defineAppConfig'] - const defineAsyncComponent: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['defineAsyncComponent'] - const defineComponent: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['defineComponent'] - const defineModel: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['defineModel'] - const defineNuxtComponent: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/component')['defineNuxtComponent'] - const defineNuxtLink: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/components/nuxt-link')['defineNuxtLink'] - const defineNuxtPlugin: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/nuxt')['defineNuxtPlugin'] - const defineNuxtRouteMiddleware: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/router')['defineNuxtRouteMiddleware'] - const defineOptions: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['defineOptions'] - const definePageMeta: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/pages/runtime/composables')['definePageMeta'] - const definePayloadPlugin: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/nuxt')['definePayloadPlugin'] - const definePayloadReducer: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/payload')['definePayloadReducer'] - const definePayloadReviver: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/payload')['definePayloadReviver'] - const defineSlots: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['defineSlots'] - const effect: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['effect'] - const effectScope: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['effectScope'] - const getAppManifest: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/manifest')['getAppManifest'] - const getCurrentInstance: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['getCurrentInstance'] - const getCurrentScope: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['getCurrentScope'] - const getRouteRules: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/manifest')['getRouteRules'] - const h: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['h'] - const hasInjectionContext: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['hasInjectionContext'] - const inject: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['inject'] - const injectHead: typeof import('../../../../../node_modules/.pnpm/@unhead+vue@1.8.10_vue@3.4.19/node_modules/@unhead/vue')['injectHead'] - const isNuxtError: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/error')['isNuxtError'] - const isPrerendered: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/payload')['isPrerendered'] - const isProxy: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['isProxy'] - const isReactive: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['isReactive'] - const isReadonly: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['isReadonly'] - const isRef: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['isRef'] - const isShallow: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['isShallow'] - const isVue2: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/compat/vue-demi')['isVue2'] - const isVue3: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/compat/vue-demi')['isVue3'] - const loadPayload: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/payload')['loadPayload'] - const markRaw: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['markRaw'] - const mergeModels: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['mergeModels'] - const navigateTo: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/router')['navigateTo'] - const nextTick: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['nextTick'] - const onActivated: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['onActivated'] - const onBeforeMount: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['onBeforeMount'] - const onBeforeRouteLeave: typeof import('../vue-router-stub')['onBeforeRouteLeave'] - const onBeforeRouteUpdate: typeof import('../vue-router-stub')['onBeforeRouteUpdate'] - const onBeforeUnmount: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['onBeforeUnmount'] - const onBeforeUpdate: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['onBeforeUpdate'] - const onDeactivated: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['onDeactivated'] - const onErrorCaptured: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['onErrorCaptured'] - const onMounted: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['onMounted'] - const onNuxtReady: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/ready')['onNuxtReady'] - const onRenderTracked: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['onRenderTracked'] - const onRenderTriggered: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['onRenderTriggered'] - const onScopeDispose: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['onScopeDispose'] - const onServerPrefetch: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['onServerPrefetch'] - const onUnmounted: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['onUnmounted'] - const onUpdated: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['onUpdated'] - const prefetchComponents: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/preload')['prefetchComponents'] - const preloadComponents: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/preload')['preloadComponents'] - const preloadPayload: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/payload')['preloadPayload'] - const preloadRouteComponents: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/preload')['preloadRouteComponents'] - const prerenderRoutes: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/ssr')['prerenderRoutes'] - const provide: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['provide'] - const proxyRefs: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['proxyRefs'] - const reactive: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['reactive'] - const readonly: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['readonly'] - const ref: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['ref'] - const refreshCookie: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/cookie')['refreshCookie'] - const refreshNuxtData: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/asyncData')['refreshNuxtData'] - const reloadNuxtApp: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/chunk')['reloadNuxtApp'] - const requestIdleCallback: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/compat/idle-callback')['requestIdleCallback'] - const resolveComponent: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['resolveComponent'] - const setInterval: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/compat/interval')['setInterval'] - const setPageLayout: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/router')['setPageLayout'] - const setResponseStatus: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/ssr')['setResponseStatus'] - const shallowReactive: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['shallowReactive'] - const shallowReadonly: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['shallowReadonly'] - const shallowRef: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['shallowRef'] - const showError: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/error')['showError'] - const toRaw: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['toRaw'] - const toRef: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['toRef'] - const toRefs: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['toRefs'] - const toValue: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['toValue'] - const triggerRef: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['triggerRef'] - const tryUseNuxtApp: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/nuxt')['tryUseNuxtApp'] - const unref: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['unref'] - const updateAppConfig: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/config')['updateAppConfig'] - const useAppConfig: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/config')['useAppConfig'] - const useAsyncData: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/asyncData')['useAsyncData'] - const useAttrs: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['useAttrs'] - const useCookie: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/cookie')['useCookie'] - const useCssModule: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['useCssModule'] - const useCssVars: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['useCssVars'] - const useError: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/error')['useError'] - const useFetch: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/fetch')['useFetch'] - const useHead: typeof import('../../../../../node_modules/.pnpm/@unhead+vue@1.8.10_vue@3.4.19/node_modules/@unhead/vue')['useHead'] - const useHeadSafe: typeof import('../../../../../node_modules/.pnpm/@unhead+vue@1.8.10_vue@3.4.19/node_modules/@unhead/vue')['useHeadSafe'] - const useHydration: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/hydrate')['useHydration'] - const useId: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/id')['useId'] - const useLazyAsyncData: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/asyncData')['useLazyAsyncData'] - const useLazyFetch: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/fetch')['useLazyFetch'] - const useLink: typeof import('../vue-router-stub')['useLink'] - const useLoadingIndicator: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/loading-indicator')['useLoadingIndicator'] - const useModel: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['useModel'] - const useNuxtApp: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/nuxt')['useNuxtApp'] - const useNuxtData: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/asyncData')['useNuxtData'] - const useRequestEvent: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/ssr')['useRequestEvent'] - const useRequestFetch: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/ssr')['useRequestFetch'] - const useRequestHeader: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/ssr')['useRequestHeader'] - const useRequestHeaders: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/ssr')['useRequestHeaders'] - const useRequestURL: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/url')['useRequestURL'] - const useRoute: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/router')['useRoute'] - const useRouter: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/router')['useRouter'] - const useRuntimeConfig: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/nuxt')['useRuntimeConfig'] - const useSeoMeta: typeof import('../../../../../node_modules/.pnpm/@unhead+vue@1.8.10_vue@3.4.19/node_modules/@unhead/vue')['useSeoMeta'] - const useServerHead: typeof import('../../../../../node_modules/.pnpm/@unhead+vue@1.8.10_vue@3.4.19/node_modules/@unhead/vue')['useServerHead'] - const useServerHeadSafe: typeof import('../../../../../node_modules/.pnpm/@unhead+vue@1.8.10_vue@3.4.19/node_modules/@unhead/vue')['useServerHeadSafe'] - const useServerSeoMeta: typeof import('../../../../../node_modules/.pnpm/@unhead+vue@1.8.10_vue@3.4.19/node_modules/@unhead/vue')['useServerSeoMeta'] - const useSlots: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['useSlots'] - const useState: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/app/composables/state')['useState'] - const useTransitionState: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['useTransitionState'] - const watch: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['watch'] - const watchEffect: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['watchEffect'] - const watchPostEffect: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['watchPostEffect'] - const watchSyncEffect: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['watchSyncEffect'] - const withCtx: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['withCtx'] - const withDirectives: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['withDirectives'] - const withKeys: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['withKeys'] - const withMemo: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['withMemo'] - const withModifiers: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['withModifiers'] - const withScopeId: typeof import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue')['withScopeId'] -} -// for type re-export -declare global { - // @ts-ignore - export type { Component, ComponentPublicInstance, ComputedRef, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, MaybeRef, MaybeRefOrGetter, VNode } from '../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue' - import('../../../../../node_modules/.pnpm/vue@3.3.4/node_modules/vue') -} -// for vue template auto import -import { UnwrapRef } from 'vue' -declare module 'vue' { - interface ComponentCustomProperties { - readonly abortNavigation: UnwrapRef - readonly addRouteMiddleware: UnwrapRef - readonly callOnce: UnwrapRef - readonly cancelIdleCallback: UnwrapRef - readonly clearError: UnwrapRef - readonly clearNuxtData: UnwrapRef - readonly clearNuxtState: UnwrapRef - readonly computed: UnwrapRef - readonly createError: UnwrapRef - readonly customRef: UnwrapRef - readonly defineAppConfig: UnwrapRef - readonly defineAsyncComponent: UnwrapRef - readonly defineComponent: UnwrapRef - readonly defineModel: UnwrapRef - readonly defineNuxtComponent: UnwrapRef - readonly defineNuxtLink: UnwrapRef - readonly defineNuxtPlugin: UnwrapRef - readonly defineNuxtRouteMiddleware: UnwrapRef - readonly defineOptions: UnwrapRef - readonly definePageMeta: UnwrapRef - readonly definePayloadPlugin: UnwrapRef - readonly definePayloadReducer: UnwrapRef - readonly definePayloadReviver: UnwrapRef - readonly defineSlots: UnwrapRef - readonly effect: UnwrapRef - readonly effectScope: UnwrapRef - readonly getAppManifest: UnwrapRef - readonly getCurrentInstance: UnwrapRef - readonly getCurrentScope: UnwrapRef - readonly getRouteRules: UnwrapRef - readonly h: UnwrapRef - readonly hasInjectionContext: UnwrapRef - readonly inject: UnwrapRef - readonly injectHead: UnwrapRef - readonly isNuxtError: UnwrapRef - readonly isPrerendered: UnwrapRef - readonly isProxy: UnwrapRef - readonly isReactive: UnwrapRef - readonly isReadonly: UnwrapRef - readonly isRef: UnwrapRef - readonly isShallow: UnwrapRef - readonly isVue2: UnwrapRef - readonly isVue3: UnwrapRef - readonly loadPayload: UnwrapRef - readonly markRaw: UnwrapRef - readonly mergeModels: UnwrapRef - readonly navigateTo: UnwrapRef - readonly nextTick: UnwrapRef - readonly onActivated: UnwrapRef - readonly onBeforeMount: UnwrapRef - readonly onBeforeRouteLeave: UnwrapRef - readonly onBeforeRouteUpdate: UnwrapRef - readonly onBeforeUnmount: UnwrapRef - readonly onBeforeUpdate: UnwrapRef - readonly onDeactivated: UnwrapRef - readonly onErrorCaptured: UnwrapRef - readonly onMounted: UnwrapRef - readonly onNuxtReady: UnwrapRef - readonly onRenderTracked: UnwrapRef - readonly onRenderTriggered: UnwrapRef - readonly onScopeDispose: UnwrapRef - readonly onServerPrefetch: UnwrapRef - readonly onUnmounted: UnwrapRef - readonly onUpdated: UnwrapRef - readonly prefetchComponents: UnwrapRef - readonly preloadComponents: UnwrapRef - readonly preloadPayload: UnwrapRef - readonly preloadRouteComponents: UnwrapRef - readonly prerenderRoutes: UnwrapRef - readonly provide: UnwrapRef - readonly proxyRefs: UnwrapRef - readonly reactive: UnwrapRef - readonly readonly: UnwrapRef - readonly ref: UnwrapRef - readonly refreshCookie: UnwrapRef - readonly refreshNuxtData: UnwrapRef - readonly reloadNuxtApp: UnwrapRef - readonly requestIdleCallback: UnwrapRef - readonly resolveComponent: UnwrapRef - readonly setInterval: UnwrapRef - readonly setPageLayout: UnwrapRef - readonly setResponseStatus: UnwrapRef - readonly shallowReactive: UnwrapRef - readonly shallowReadonly: UnwrapRef - readonly shallowRef: UnwrapRef - readonly showError: UnwrapRef - readonly toRaw: UnwrapRef - readonly toRef: UnwrapRef - readonly toRefs: UnwrapRef - readonly toValue: UnwrapRef - readonly triggerRef: UnwrapRef - readonly tryUseNuxtApp: UnwrapRef - readonly unref: UnwrapRef - readonly updateAppConfig: UnwrapRef - readonly useAppConfig: UnwrapRef - readonly useAsyncData: UnwrapRef - readonly useAttrs: UnwrapRef - readonly useCookie: UnwrapRef - readonly useCssModule: UnwrapRef - readonly useCssVars: UnwrapRef - readonly useError: UnwrapRef - readonly useFetch: UnwrapRef - readonly useHead: UnwrapRef - readonly useHeadSafe: UnwrapRef - readonly useHydration: UnwrapRef - readonly useId: UnwrapRef - readonly useLazyAsyncData: UnwrapRef - readonly useLazyFetch: UnwrapRef - readonly useLink: UnwrapRef - readonly useLoadingIndicator: UnwrapRef - readonly useModel: UnwrapRef - readonly useNuxtApp: UnwrapRef - readonly useNuxtData: UnwrapRef - readonly useRequestEvent: UnwrapRef - readonly useRequestFetch: UnwrapRef - readonly useRequestHeader: UnwrapRef - readonly useRequestHeaders: UnwrapRef - readonly useRequestURL: UnwrapRef - readonly useRoute: UnwrapRef - readonly useRouter: UnwrapRef - readonly useRuntimeConfig: UnwrapRef - readonly useSeoMeta: UnwrapRef - readonly useServerHead: UnwrapRef - readonly useServerHeadSafe: UnwrapRef - readonly useServerSeoMeta: UnwrapRef - readonly useSlots: UnwrapRef - readonly useState: UnwrapRef - readonly useTransitionState: UnwrapRef - readonly watch: UnwrapRef - readonly watchEffect: UnwrapRef - readonly watchPostEffect: UnwrapRef - readonly watchSyncEffect: UnwrapRef - readonly withCtx: UnwrapRef - readonly withDirectives: UnwrapRef - readonly withKeys: UnwrapRef - readonly withMemo: UnwrapRef - readonly withModifiers: UnwrapRef - readonly withScopeId: UnwrapRef - } -} -declare module '@vue/runtime-core' { - interface ComponentCustomProperties { - readonly abortNavigation: UnwrapRef - readonly addRouteMiddleware: UnwrapRef - readonly callOnce: UnwrapRef - readonly cancelIdleCallback: UnwrapRef - readonly clearError: UnwrapRef - readonly clearNuxtData: UnwrapRef - readonly clearNuxtState: UnwrapRef - readonly computed: UnwrapRef - readonly createError: UnwrapRef - readonly customRef: UnwrapRef - readonly defineAppConfig: UnwrapRef - readonly defineAsyncComponent: UnwrapRef - readonly defineComponent: UnwrapRef - readonly defineModel: UnwrapRef - readonly defineNuxtComponent: UnwrapRef - readonly defineNuxtLink: UnwrapRef - readonly defineNuxtPlugin: UnwrapRef - readonly defineNuxtRouteMiddleware: UnwrapRef - readonly defineOptions: UnwrapRef - readonly definePageMeta: UnwrapRef - readonly definePayloadPlugin: UnwrapRef - readonly definePayloadReducer: UnwrapRef - readonly definePayloadReviver: UnwrapRef - readonly defineSlots: UnwrapRef - readonly effect: UnwrapRef - readonly effectScope: UnwrapRef - readonly getAppManifest: UnwrapRef - readonly getCurrentInstance: UnwrapRef - readonly getCurrentScope: UnwrapRef - readonly getRouteRules: UnwrapRef - readonly h: UnwrapRef - readonly hasInjectionContext: UnwrapRef - readonly inject: UnwrapRef - readonly injectHead: UnwrapRef - readonly isNuxtError: UnwrapRef - readonly isPrerendered: UnwrapRef - readonly isProxy: UnwrapRef - readonly isReactive: UnwrapRef - readonly isReadonly: UnwrapRef - readonly isRef: UnwrapRef - readonly isShallow: UnwrapRef - readonly isVue2: UnwrapRef - readonly isVue3: UnwrapRef - readonly loadPayload: UnwrapRef - readonly markRaw: UnwrapRef - readonly mergeModels: UnwrapRef - readonly navigateTo: UnwrapRef - readonly nextTick: UnwrapRef - readonly onActivated: UnwrapRef - readonly onBeforeMount: UnwrapRef - readonly onBeforeRouteLeave: UnwrapRef - readonly onBeforeRouteUpdate: UnwrapRef - readonly onBeforeUnmount: UnwrapRef - readonly onBeforeUpdate: UnwrapRef - readonly onDeactivated: UnwrapRef - readonly onErrorCaptured: UnwrapRef - readonly onMounted: UnwrapRef - readonly onNuxtReady: UnwrapRef - readonly onRenderTracked: UnwrapRef - readonly onRenderTriggered: UnwrapRef - readonly onScopeDispose: UnwrapRef - readonly onServerPrefetch: UnwrapRef - readonly onUnmounted: UnwrapRef - readonly onUpdated: UnwrapRef - readonly prefetchComponents: UnwrapRef - readonly preloadComponents: UnwrapRef - readonly preloadPayload: UnwrapRef - readonly preloadRouteComponents: UnwrapRef - readonly prerenderRoutes: UnwrapRef - readonly provide: UnwrapRef - readonly proxyRefs: UnwrapRef - readonly reactive: UnwrapRef - readonly readonly: UnwrapRef - readonly ref: UnwrapRef - readonly refreshCookie: UnwrapRef - readonly refreshNuxtData: UnwrapRef - readonly reloadNuxtApp: UnwrapRef - readonly requestIdleCallback: UnwrapRef - readonly resolveComponent: UnwrapRef - readonly setInterval: UnwrapRef - readonly setPageLayout: UnwrapRef - readonly setResponseStatus: UnwrapRef - readonly shallowReactive: UnwrapRef - readonly shallowReadonly: UnwrapRef - readonly shallowRef: UnwrapRef - readonly showError: UnwrapRef - readonly toRaw: UnwrapRef - readonly toRef: UnwrapRef - readonly toRefs: UnwrapRef - readonly toValue: UnwrapRef - readonly triggerRef: UnwrapRef - readonly tryUseNuxtApp: UnwrapRef - readonly unref: UnwrapRef - readonly updateAppConfig: UnwrapRef - readonly useAppConfig: UnwrapRef - readonly useAsyncData: UnwrapRef - readonly useAttrs: UnwrapRef - readonly useCookie: UnwrapRef - readonly useCssModule: UnwrapRef - readonly useCssVars: UnwrapRef - readonly useError: UnwrapRef - readonly useFetch: UnwrapRef - readonly useHead: UnwrapRef - readonly useHeadSafe: UnwrapRef - readonly useHydration: UnwrapRef - readonly useId: UnwrapRef - readonly useLazyAsyncData: UnwrapRef - readonly useLazyFetch: UnwrapRef - readonly useLink: UnwrapRef - readonly useLoadingIndicator: UnwrapRef - readonly useModel: UnwrapRef - readonly useNuxtApp: UnwrapRef - readonly useNuxtData: UnwrapRef - readonly useRequestEvent: UnwrapRef - readonly useRequestFetch: UnwrapRef - readonly useRequestHeader: UnwrapRef - readonly useRequestHeaders: UnwrapRef - readonly useRequestURL: UnwrapRef - readonly useRoute: UnwrapRef - readonly useRouter: UnwrapRef - readonly useRuntimeConfig: UnwrapRef - readonly useSeoMeta: UnwrapRef - readonly useServerHead: UnwrapRef - readonly useServerHeadSafe: UnwrapRef - readonly useServerSeoMeta: UnwrapRef - readonly useSlots: UnwrapRef - readonly useState: UnwrapRef - readonly useTransitionState: UnwrapRef - readonly watch: UnwrapRef - readonly watchEffect: UnwrapRef - readonly watchPostEffect: UnwrapRef - readonly watchSyncEffect: UnwrapRef - readonly withCtx: UnwrapRef - readonly withDirectives: UnwrapRef - readonly withKeys: UnwrapRef - readonly withMemo: UnwrapRef - readonly withModifiers: UnwrapRef - readonly withScopeId: UnwrapRef - } -} diff --git a/javascript/shared-todo-completed/.nuxt/types/layouts.d.ts b/javascript/shared-todo-completed/.nuxt/types/layouts.d.ts deleted file mode 100644 index b4cd8aeb..00000000 --- a/javascript/shared-todo-completed/.nuxt/types/layouts.d.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { ComputedRef, MaybeRef } from 'vue' -export type LayoutKey = string -declare module "../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/pages/runtime/composables" { - interface PageMeta { - layout?: MaybeRef | ComputedRef - } -} \ No newline at end of file diff --git a/javascript/shared-todo-completed/.nuxt/types/middleware.d.ts b/javascript/shared-todo-completed/.nuxt/types/middleware.d.ts deleted file mode 100644 index 563a562e..00000000 --- a/javascript/shared-todo-completed/.nuxt/types/middleware.d.ts +++ /dev/null @@ -1,7 +0,0 @@ -import type { NavigationGuard } from 'vue-router' -export type MiddlewareKey = string -declare module "../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/pages/runtime/composables" { - interface PageMeta { - middleware?: MiddlewareKey | NavigationGuard | Array - } -} \ No newline at end of file diff --git a/javascript/shared-todo-completed/.nuxt/types/nitro-config.d.ts b/javascript/shared-todo-completed/.nuxt/types/nitro-config.d.ts deleted file mode 100644 index 29f79398..00000000 --- a/javascript/shared-todo-completed/.nuxt/types/nitro-config.d.ts +++ /dev/null @@ -1,14 +0,0 @@ -// Generated by nitro - -// App Config -import type { Defu } from 'defu' - - - -type UserAppConfig = Defu<{}, []> - -declare module 'nitropack' { - interface AppConfig extends UserAppConfig {} -} - -export {} \ No newline at end of file diff --git a/javascript/shared-todo-completed/.nuxt/types/nitro-imports.d.ts b/javascript/shared-todo-completed/.nuxt/types/nitro-imports.d.ts deleted file mode 100644 index 4e27781a..00000000 --- a/javascript/shared-todo-completed/.nuxt/types/nitro-imports.d.ts +++ /dev/null @@ -1,124 +0,0 @@ -declare global { - const __buildAssetsURL: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/core/runtime/nitro/paths')['buildAssetsURL'] - const __publicAssetsURL: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/core/runtime/nitro/paths')['publicAssetsURL'] - const appendCorsHeaders: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['appendCorsHeaders'] - const appendCorsPreflightHeaders: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['appendCorsPreflightHeaders'] - const appendHeader: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['appendHeader'] - const appendHeaders: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['appendHeaders'] - const appendResponseHeader: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['appendResponseHeader'] - const appendResponseHeaders: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['appendResponseHeaders'] - const assertMethod: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['assertMethod'] - const cachedEventHandler: typeof import('../../../../../node_modules/.pnpm/nitropack@2.8.1_xml2js@0.6.2/node_modules/nitropack/dist/runtime')['cachedEventHandler'] - const cachedFunction: typeof import('../../../../../node_modules/.pnpm/nitropack@2.8.1_xml2js@0.6.2/node_modules/nitropack/dist/runtime')['cachedFunction'] - const callNodeListener: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['callNodeListener'] - const clearResponseHeaders: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['clearResponseHeaders'] - const clearSession: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['clearSession'] - const createApp: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['createApp'] - const createAppEventHandler: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['createAppEventHandler'] - const createError: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['createError'] - const createEvent: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['createEvent'] - const createRouter: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['createRouter'] - const defaultContentType: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['defaultContentType'] - const defineAppConfig: typeof import('../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/core/runtime/nitro/config')['defineAppConfig'] - const defineCachedEventHandler: typeof import('../../../../../node_modules/.pnpm/nitropack@2.8.1_xml2js@0.6.2/node_modules/nitropack/dist/runtime')['defineCachedEventHandler'] - const defineCachedFunction: typeof import('../../../../../node_modules/.pnpm/nitropack@2.8.1_xml2js@0.6.2/node_modules/nitropack/dist/runtime')['defineCachedFunction'] - const defineEventHandler: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['defineEventHandler'] - const defineLazyEventHandler: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['defineLazyEventHandler'] - const defineNitroErrorHandler: typeof import('../../../../../node_modules/.pnpm/nitropack@2.8.1_xml2js@0.6.2/node_modules/nitropack/dist/runtime')['defineNitroErrorHandler'] - const defineNitroPlugin: typeof import('../../../../../node_modules/.pnpm/nitropack@2.8.1_xml2js@0.6.2/node_modules/nitropack/dist/runtime')['defineNitroPlugin'] - const defineNodeListener: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['defineNodeListener'] - const defineNodeMiddleware: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['defineNodeMiddleware'] - const defineRenderHandler: typeof import('../../../../../node_modules/.pnpm/nitropack@2.8.1_xml2js@0.6.2/node_modules/nitropack/dist/runtime')['defineRenderHandler'] - const defineRequestMiddleware: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['defineRequestMiddleware'] - const defineResponseMiddleware: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['defineResponseMiddleware'] - const deleteCookie: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['deleteCookie'] - const dynamicEventHandler: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['dynamicEventHandler'] - const eventHandler: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['eventHandler'] - const fetchWithEvent: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['fetchWithEvent'] - const fromNodeMiddleware: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['fromNodeMiddleware'] - const fromPlainHandler: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['fromPlainHandler'] - const fromWebHandler: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['fromWebHandler'] - const getCookie: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['getCookie'] - const getHeader: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['getHeader'] - const getHeaders: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['getHeaders'] - const getMethod: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['getMethod'] - const getProxyRequestHeaders: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['getProxyRequestHeaders'] - const getQuery: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['getQuery'] - const getRequestFingerprint: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['getRequestFingerprint'] - const getRequestHeader: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['getRequestHeader'] - const getRequestHeaders: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['getRequestHeaders'] - const getRequestHost: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['getRequestHost'] - const getRequestIP: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['getRequestIP'] - const getRequestPath: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['getRequestPath'] - const getRequestProtocol: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['getRequestProtocol'] - const getRequestURL: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['getRequestURL'] - const getRequestWebStream: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['getRequestWebStream'] - const getResponseHeader: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['getResponseHeader'] - const getResponseHeaders: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['getResponseHeaders'] - const getResponseStatus: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['getResponseStatus'] - const getResponseStatusText: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['getResponseStatusText'] - const getRouteRules: typeof import('../../../../../node_modules/.pnpm/nitropack@2.8.1_xml2js@0.6.2/node_modules/nitropack/dist/runtime')['getRouteRules'] - const getRouterParam: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['getRouterParam'] - const getRouterParams: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['getRouterParams'] - const getSession: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['getSession'] - const getValidatedQuery: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['getValidatedQuery'] - const getValidatedRouterParams: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['getValidatedRouterParams'] - const handleCacheHeaders: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['handleCacheHeaders'] - const handleCors: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['handleCors'] - const isCorsOriginAllowed: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['isCorsOriginAllowed'] - const isError: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['isError'] - const isEvent: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['isEvent'] - const isEventHandler: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['isEventHandler'] - const isMethod: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['isMethod'] - const isPreflightRequest: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['isPreflightRequest'] - const isStream: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['isStream'] - const isWebResponse: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['isWebResponse'] - const lazyEventHandler: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['lazyEventHandler'] - const nitroPlugin: typeof import('../../../../../node_modules/.pnpm/nitropack@2.8.1_xml2js@0.6.2/node_modules/nitropack/dist/runtime')['nitroPlugin'] - const parseCookies: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['parseCookies'] - const promisifyNodeListener: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['promisifyNodeListener'] - const proxyRequest: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['proxyRequest'] - const readBody: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['readBody'] - const readFormData: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['readFormData'] - const readMultipartFormData: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['readMultipartFormData'] - const readRawBody: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['readRawBody'] - const readValidatedBody: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['readValidatedBody'] - const removeResponseHeader: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['removeResponseHeader'] - const sanitizeStatusCode: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['sanitizeStatusCode'] - const sanitizeStatusMessage: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['sanitizeStatusMessage'] - const sealSession: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['sealSession'] - const send: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['send'] - const sendError: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['sendError'] - const sendNoContent: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['sendNoContent'] - const sendProxy: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['sendProxy'] - const sendRedirect: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['sendRedirect'] - const sendStream: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['sendStream'] - const sendWebResponse: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['sendWebResponse'] - const serveStatic: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['serveStatic'] - const setCookie: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['setCookie'] - const setHeader: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['setHeader'] - const setHeaders: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['setHeaders'] - const setResponseHeader: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['setResponseHeader'] - const setResponseHeaders: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['setResponseHeaders'] - const setResponseStatus: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['setResponseStatus'] - const splitCookiesString: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['splitCookiesString'] - const toEventHandler: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['toEventHandler'] - const toNodeListener: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['toNodeListener'] - const toPlainHandler: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['toPlainHandler'] - const toWebHandler: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['toWebHandler'] - const toWebRequest: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['toWebRequest'] - const unsealSession: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['unsealSession'] - const updateSession: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['updateSession'] - const useAppConfig: typeof import('../../../../../node_modules/.pnpm/nitropack@2.8.1_xml2js@0.6.2/node_modules/nitropack/dist/runtime')['useAppConfig'] - const useBase: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['useBase'] - const useEvent: typeof import('../../../../../node_modules/.pnpm/nitropack@2.8.1_xml2js@0.6.2/node_modules/nitropack/dist/runtime')['useEvent'] - const useNitroApp: typeof import('../../../../../node_modules/.pnpm/nitropack@2.8.1_xml2js@0.6.2/node_modules/nitropack/dist/runtime')['useNitroApp'] - const useRuntimeConfig: typeof import('../../../../../node_modules/.pnpm/nitropack@2.8.1_xml2js@0.6.2/node_modules/nitropack/dist/runtime')['useRuntimeConfig'] - const useSession: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['useSession'] - const useStorage: typeof import('../../../../../node_modules/.pnpm/nitropack@2.8.1_xml2js@0.6.2/node_modules/nitropack/dist/runtime')['useStorage'] - const writeEarlyHints: typeof import('../../../../../node_modules/.pnpm/h3@1.10.2/node_modules/h3')['writeEarlyHints'] -} -export { defineCachedFunction, defineCachedEventHandler, cachedFunction, cachedEventHandler, useRuntimeConfig, useStorage, useNitroApp, defineNitroPlugin, nitroPlugin, defineRenderHandler, getRouteRules, useAppConfig, useEvent, defineNitroErrorHandler } from '../../../../../node_modules/.pnpm/nitropack@2.8.1_xml2js@0.6.2/node_modules/nitropack/dist/runtime'; -export { appendCorsHeaders, appendCorsPreflightHeaders, appendHeader, appendHeaders, appendResponseHeader, appendResponseHeaders, assertMethod, callNodeListener, clearResponseHeaders, clearSession, createApp, createAppEventHandler, createError, createEvent, createRouter, defaultContentType, defineEventHandler, defineLazyEventHandler, defineNodeListener, defineNodeMiddleware, defineRequestMiddleware, defineResponseMiddleware, deleteCookie, dynamicEventHandler, eventHandler, fetchWithEvent, fromNodeMiddleware, fromPlainHandler, fromWebHandler, getCookie, getHeader, getHeaders, getMethod, getProxyRequestHeaders, getQuery, getRequestFingerprint, getRequestHeader, getRequestHeaders, getRequestHost, getRequestIP, getRequestPath, getRequestProtocol, getRequestURL, getRequestWebStream, getResponseHeader, getResponseHeaders, getResponseStatus, getResponseStatusText, getRouterParam, getRouterParams, getSession, getValidatedQuery, getValidatedRouterParams, handleCacheHeaders, handleCors, isCorsOriginAllowed, isError, isEvent, isEventHandler, isMethod, isPreflightRequest, isStream, isWebResponse, lazyEventHandler, parseCookies, promisifyNodeListener, proxyRequest, readBody, readFormData, readMultipartFormData, readRawBody, readValidatedBody, removeResponseHeader, sanitizeStatusCode, sanitizeStatusMessage, sealSession, send, sendError, sendNoContent, sendProxy, sendRedirect, sendStream, sendWebResponse, serveStatic, setCookie, setHeader, setHeaders, setResponseHeader, setResponseHeaders, setResponseStatus, splitCookiesString, toEventHandler, toNodeListener, toPlainHandler, toWebHandler, toWebRequest, unsealSession, updateSession, useBase, useSession, writeEarlyHints } from 'h3'; -export { buildAssetsURL as __buildAssetsURL, publicAssetsURL as __publicAssetsURL } from '../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/core/runtime/nitro/paths'; -export { defineAppConfig } from '../../../../../node_modules/.pnpm/nuxt@3.10.3_@types+node@18.16.19_rollup@2.61.1_sass@1.63.6_typescript@5.3.3_vite@5.1.4_xml2js@0.6.2/node_modules/nuxt/dist/core/runtime/nitro/config'; \ No newline at end of file diff --git a/javascript/shared-todo-completed/.nuxt/types/nitro-nuxt.d.ts b/javascript/shared-todo-completed/.nuxt/types/nitro-nuxt.d.ts deleted file mode 100644 index ff88b2b5..00000000 --- a/javascript/shared-todo-completed/.nuxt/types/nitro-nuxt.d.ts +++ /dev/null @@ -1,26 +0,0 @@ - -/// - -import type { RuntimeConfig } from 'nuxt/schema' -import type { H3Event } from 'h3' -import type { NuxtIslandContext, NuxtIslandResponse, NuxtRenderHTMLContext } from 'nuxt/dist/core/runtime/nitro/renderer' - -declare module 'nitropack' { - interface NitroRuntimeConfigApp { - buildAssetsDir: string - cdnURL: string - } - interface NitroRuntimeConfig extends RuntimeConfig {} - interface NitroRouteConfig { - ssr?: boolean - experimentalNoScripts?: boolean - } - interface NitroRouteRules { - ssr?: boolean - experimentalNoScripts?: boolean - } - interface NitroRuntimeHooks { - 'render:html': (htmlContext: NuxtRenderHTMLContext, context: { event: H3Event }) => void | Promise - 'render:island': (islandResponse: NuxtIslandResponse, context: { event: H3Event, islandContext: NuxtIslandContext }) => void | Promise - } -} diff --git a/javascript/shared-todo-completed/.nuxt/types/nitro-routes.d.ts b/javascript/shared-todo-completed/.nuxt/types/nitro-routes.d.ts deleted file mode 100644 index d56188ad..00000000 --- a/javascript/shared-todo-completed/.nuxt/types/nitro-routes.d.ts +++ /dev/null @@ -1,11 +0,0 @@ -// Generated by nitro -import type { Serialize, Simplify } from 'nitropack' -declare module 'nitropack' { - type Awaited = T extends PromiseLike ? Awaited : T - interface InternalApi { - '/__nuxt_error': { - 'default': Simplify>>> - } - } -} -export {} \ No newline at end of file diff --git a/javascript/shared-todo-completed/.nuxt/types/nitro.d.ts b/javascript/shared-todo-completed/.nuxt/types/nitro.d.ts deleted file mode 100644 index bf09bd4d..00000000 --- a/javascript/shared-todo-completed/.nuxt/types/nitro.d.ts +++ /dev/null @@ -1,3 +0,0 @@ -/// -/// -/// \ No newline at end of file diff --git a/javascript/shared-todo-completed/.nuxt/types/plugins.d.ts b/javascript/shared-todo-completed/.nuxt/types/plugins.d.ts deleted file mode 100644 index 9e3e692f..00000000 --- a/javascript/shared-todo-completed/.nuxt/types/plugins.d.ts +++ /dev/null @@ -1,32 +0,0 @@ -// Generated by Nuxt' -import type { Plugin } from '#app' - -type Decorate> = { [K in keyof T as K extends string ? `$${K}` : never]: T[K] } - -type IsAny = 0 extends 1 & T ? true : false -type InjectionType = IsAny extends true ? unknown : A extends Plugin ? Decorate : unknown - -type NuxtAppInjections = - InjectionType & - InjectionType & - InjectionType & - InjectionType & - InjectionType & - InjectionType & - InjectionType & - InjectionType & - InjectionType - -declare module '#app' { - interface NuxtApp extends NuxtAppInjections { } - - interface NuxtAppLiterals { - pluginName: 'nuxt:revive-payload:client' | 'nuxt:head' | 'nuxt:router' | 'nuxt:payload' | 'nuxt:revive-payload:server' | 'nuxt:global-components' | 'nuxt:prefetch' | 'nuxt:chunk-reload' - } -} - -declare module 'vue' { - interface ComponentCustomProperties extends NuxtAppInjections { } -} - -export { } diff --git a/javascript/shared-todo-completed/.nuxt/types/schema.d.ts b/javascript/shared-todo-completed/.nuxt/types/schema.d.ts deleted file mode 100644 index 1862a66f..00000000 --- a/javascript/shared-todo-completed/.nuxt/types/schema.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { NuxtModule, RuntimeConfig } from 'nuxt/schema' -declare module 'nuxt/schema' { - interface NuxtConfig { - ["tailwindcss"]?: typeof import("@nuxtjs/tailwindcss").default extends NuxtModule ? Partial : Record - ["devtools"]?: typeof import("@nuxt/devtools").default extends NuxtModule ? Partial : Record - modules?: (undefined | null | false | NuxtModule | string | [NuxtModule | string, Record] | ["@nuxtjs/tailwindcss", Exclude] | ["@nuxt/devtools", Exclude])[], - } - interface RuntimeConfig { - app: { - baseURL: string, - - buildAssetsDir: string, - - cdnURL: string, - }, - } - interface PublicRuntimeConfig { - - } -} -declare module 'vue' { - interface ComponentCustomProperties { - $config: RuntimeConfig - } - } \ No newline at end of file diff --git a/javascript/shared-todo-completed/.nuxt/types/vue-shim.d.ts b/javascript/shared-todo-completed/.nuxt/types/vue-shim.d.ts deleted file mode 100644 index 3160e555..00000000 --- a/javascript/shared-todo-completed/.nuxt/types/vue-shim.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare module '*.vue' { - import { DefineComponent } from 'vue' - const component: DefineComponent<{}, {}, any> - export default component -} \ No newline at end of file diff --git a/javascript/shared-todo-completed/.nuxt/vue-router-stub.d.ts b/javascript/shared-todo-completed/.nuxt/vue-router-stub.d.ts deleted file mode 100644 index e1866f9e..00000000 --- a/javascript/shared-todo-completed/.nuxt/vue-router-stub.d.ts +++ /dev/null @@ -1 +0,0 @@ -export * from 'vue-router' \ No newline at end of file diff --git a/javascript/shared-todo-completed/package.json b/javascript/shared-todo-completed/package.json index a53c9fe5..fccdc33e 100644 --- a/javascript/shared-todo-completed/package.json +++ b/javascript/shared-todo-completed/package.json @@ -17,7 +17,6 @@ "@tailwindcss/typography": "0.5.9", "@types/node": "18.16.19", "nuxt": "3.6.5", - "playwright": "^1.44.1", "sass": "1.63.6", "sass-loader": "13.3.2" }, @@ -31,4 +30,4 @@ "vue-router": "4.2.5" }, "type": "module" -} +} \ No newline at end of file diff --git a/javascript/shared-todo-completed/playwright.config.js b/javascript/shared-todo-completed/playwright.config.js index 8b19bb63..cfe57c18 100644 --- a/javascript/shared-todo-completed/playwright.config.js +++ b/javascript/shared-todo-completed/playwright.config.js @@ -1,49 +1,3 @@ -const { devices } = require('playwright/test'); +import defaultPlaywrightConfig from '../../util/default-playwright-config'; -module.exports = { - timeout: 20000, - use: { - browserName: 'chromium', - headless: true, - viewport: { width: 1280, height: 720 }, - }, - reporter: [['html'], ['dot']], - testDir: './', - testMatch: '**/*.spec.js', - projects: [ - { - name: 'chromium', - use: { ...devices['Desktop Chrome'] }, - }, - { - name: 'firefox', - use: { ...devices['Desktop Firefox'] }, - }, - { - name: 'webkit', - use: { ...devices['Desktop Safari'] }, - }, - { - name: 'Mobile Chrome', - use: { ...devices['Pixel 5'] }, - }, - { - name: 'Mobile Safari', - use: { ...devices['iPhone 12'] }, - }, - { - name: 'Microsoft Edge', - use: { - ...devices['Desktop Edge'], - channel: 'msedge', - }, - }, - { - name: 'Google Chrome', - use: { - ...devices['Desktop Chrome'], - channel: 'chrome', - }, - }, - ], -}; +export default defaultPlaywrightConfig; diff --git a/javascript/shared-todo-starter/package.json b/javascript/shared-todo-starter/package.json index 63233283..b3d38f5f 100644 --- a/javascript/shared-todo-starter/package.json +++ b/javascript/shared-todo-starter/package.json @@ -18,7 +18,6 @@ "@tailwindcss/typography": "0.5.9", "@types/node": "18.16.19", "nuxt": "3.6.5", - "playwright": "^1.44.1", "sass": "1.63.6", "sass-loader": "13.3.2" }, @@ -29,4 +28,4 @@ "vue": "3.3.4", "vue-router": "4.2.5" } -} +} \ No newline at end of file diff --git a/javascript/shared-todo-starter/playwright.config.js b/javascript/shared-todo-starter/playwright.config.js index 8b19bb63..cfe57c18 100644 --- a/javascript/shared-todo-starter/playwright.config.js +++ b/javascript/shared-todo-starter/playwright.config.js @@ -1,49 +1,3 @@ -const { devices } = require('playwright/test'); +import defaultPlaywrightConfig from '../../util/default-playwright-config'; -module.exports = { - timeout: 20000, - use: { - browserName: 'chromium', - headless: true, - viewport: { width: 1280, height: 720 }, - }, - reporter: [['html'], ['dot']], - testDir: './', - testMatch: '**/*.spec.js', - projects: [ - { - name: 'chromium', - use: { ...devices['Desktop Chrome'] }, - }, - { - name: 'firefox', - use: { ...devices['Desktop Firefox'] }, - }, - { - name: 'webkit', - use: { ...devices['Desktop Safari'] }, - }, - { - name: 'Mobile Chrome', - use: { ...devices['Pixel 5'] }, - }, - { - name: 'Mobile Safari', - use: { ...devices['iPhone 12'] }, - }, - { - name: 'Microsoft Edge', - use: { - ...devices['Desktop Edge'], - channel: 'msedge', - }, - }, - { - name: 'Google Chrome', - use: { - ...devices['Desktop Chrome'], - channel: 'chrome', - }, - }, - ], -}; +export default defaultPlaywrightConfig; diff --git a/javascript/todo-completed/package.json b/javascript/todo-completed/package.json index 91f4e40e..63392c10 100644 --- a/javascript/todo-completed/package.json +++ b/javascript/todo-completed/package.json @@ -15,13 +15,13 @@ "@heroicons/vue": "1.0.6", "@noble/ed25519": "1.7.1", "@vueuse/core": "9.6.0", - "@web5/api": "0.9.4", "multiformats": "10.0.2", "uuid": "9.0.0", "varint": "6.0.0", "vue": "3.2.41", - "vue-router": "4.2.5", - "vue-toastification": "2.0.0-rc.5" + "vue-toastification": "2.0.0-rc.5", + "@web5/api": "0.9.4", + "vue-router": "4.2.5" }, "devDependencies": { "@esbuild-plugins/node-globals-polyfill": "0.2.3", @@ -32,7 +32,6 @@ "eslint": "8.22.0", "eslint-plugin-import": "2.26.0", "eslint-plugin-vue": "9.4.0", - "playwright": "^1.44.1", "postcss": "8.4.31", "rollup-plugin-polyfill-node": "0.12.0", "tailwindcss": "3.2.4", @@ -45,4 +44,4 @@ "last 2 Safari versions", "last 2 Edge versions" ] -} +} \ No newline at end of file diff --git a/javascript/todo-completed/playwright.config.js b/javascript/todo-completed/playwright.config.js index 8b19bb63..cfe57c18 100644 --- a/javascript/todo-completed/playwright.config.js +++ b/javascript/todo-completed/playwright.config.js @@ -1,49 +1,3 @@ -const { devices } = require('playwright/test'); +import defaultPlaywrightConfig from '../../util/default-playwright-config'; -module.exports = { - timeout: 20000, - use: { - browserName: 'chromium', - headless: true, - viewport: { width: 1280, height: 720 }, - }, - reporter: [['html'], ['dot']], - testDir: './', - testMatch: '**/*.spec.js', - projects: [ - { - name: 'chromium', - use: { ...devices['Desktop Chrome'] }, - }, - { - name: 'firefox', - use: { ...devices['Desktop Firefox'] }, - }, - { - name: 'webkit', - use: { ...devices['Desktop Safari'] }, - }, - { - name: 'Mobile Chrome', - use: { ...devices['Pixel 5'] }, - }, - { - name: 'Mobile Safari', - use: { ...devices['iPhone 12'] }, - }, - { - name: 'Microsoft Edge', - use: { - ...devices['Desktop Edge'], - channel: 'msedge', - }, - }, - { - name: 'Google Chrome', - use: { - ...devices['Desktop Chrome'], - channel: 'chrome', - }, - }, - ], -}; +export default defaultPlaywrightConfig; diff --git a/javascript/todo-starter/package.json b/javascript/todo-starter/package.json index 2d9cd984..2ded3e89 100644 --- a/javascript/todo-starter/package.json +++ b/javascript/todo-starter/package.json @@ -15,12 +15,12 @@ "@heroicons/vue": "1.0.6", "@noble/ed25519": "1.7.1", "@vueuse/core": "9.6.0", - "@web5/api": "0.9.4", "multiformats": "10.0.2", "uuid": "9.0.0", "varint": "6.0.0", "vue": "3.3.4", - "vue-toastification": "2.0.0-rc.5" + "vue-toastification": "2.0.0-rc.5", + "@web5/api": "0.9.4" }, "devDependencies": { "@esbuild-plugins/node-globals-polyfill": "0.2.3", @@ -31,7 +31,6 @@ "eslint": "8.22.0", "eslint-plugin-import": "2.26.0", "eslint-plugin-vue": "9.4.0", - "playwright": "^1.44.1", "postcss": "8.4.31", "rollup-plugin-polyfill-node": "0.12.0", "tailwindcss": "3.2.4", @@ -44,4 +43,4 @@ "last 2 Safari versions", "last 2 Edge versions" ] -} +} \ No newline at end of file diff --git a/javascript/todo-starter/playwright.config.js b/javascript/todo-starter/playwright.config.js index 8b19bb63..cfe57c18 100644 --- a/javascript/todo-starter/playwright.config.js +++ b/javascript/todo-starter/playwright.config.js @@ -1,49 +1,3 @@ -const { devices } = require('playwright/test'); +import defaultPlaywrightConfig from '../../util/default-playwright-config'; -module.exports = { - timeout: 20000, - use: { - browserName: 'chromium', - headless: true, - viewport: { width: 1280, height: 720 }, - }, - reporter: [['html'], ['dot']], - testDir: './', - testMatch: '**/*.spec.js', - projects: [ - { - name: 'chromium', - use: { ...devices['Desktop Chrome'] }, - }, - { - name: 'firefox', - use: { ...devices['Desktop Firefox'] }, - }, - { - name: 'webkit', - use: { ...devices['Desktop Safari'] }, - }, - { - name: 'Mobile Chrome', - use: { ...devices['Pixel 5'] }, - }, - { - name: 'Mobile Safari', - use: { ...devices['iPhone 12'] }, - }, - { - name: 'Microsoft Edge', - use: { - ...devices['Desktop Edge'], - channel: 'msedge', - }, - }, - { - name: 'Google Chrome', - use: { - ...devices['Desktop Chrome'], - channel: 'chrome', - }, - }, - ], -}; +export default defaultPlaywrightConfig;