commit 0e686073253d0e512ca8f6a3be373b4a7287606d Author: 20220899 Date: Tue Jun 16 23:36:14 2026 +0000 Upload files to "/" diff --git a/index.html b/index.html new file mode 100644 index 0000000..9ea5d61 --- /dev/null +++ b/index.html @@ -0,0 +1,12 @@ + + + + + + + pawspective + + +
+ + diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 0000000..c7a0b10 --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,33 @@ +{ + "compilerOptions": { + "moduleResolution": "bundler", + "target": "ESNext", + "module": "ESNext", + /** + * svelte-preprocess cannot figure out whether you have + * a value or a type, so tell TypeScript to enforce using + * `import type` instead of `import` for Types. + */ + "verbatimModuleSyntax": true, + "isolatedModules": true, + "resolveJsonModule": true, + /** + * To have warnings / errors of the Svelte compiler at the + * correct position, enable source maps by default. + */ + "sourceMap": true, + "esModuleInterop": true, + "types": ["vite/client"], + "skipLibCheck": true, + /** + * Typecheck JS in `.svelte` and `.js` files by default. + * Disable this if you'd like to use dynamic types. + */ + "checkJs": true + }, + /** + * Use global.d.ts instead of compilerOptions.types + * to avoid limiting type declarations. + */ + "include": ["src/**/*.d.ts", "src/**/*.js", "src/**/*.svelte"] +} diff --git a/netlify.toml b/netlify.toml new file mode 100644 index 0000000..c91b18f --- /dev/null +++ b/netlify.toml @@ -0,0 +1,7 @@ +[build] + command = "npm run build" + publish = "dist" + +# If you need to set environment variables for your build, uncomment and set here +#[build.environment] +# NODE_ENV = "production" diff --git a/svelte.config.js b/svelte.config.js new file mode 100644 index 0000000..0cf7db3 --- /dev/null +++ b/svelte.config.js @@ -0,0 +1,2 @@ +/** @type {import("@sveltejs/vite-plugin-svelte").SvelteConfig} */ +export default {} diff --git a/vite.config.js b/vite.config.js new file mode 100644 index 0000000..6b5ff8f --- /dev/null +++ b/vite.config.js @@ -0,0 +1,7 @@ +import { defineConfig } from "vite"; +import { svelte } from "@sveltejs/vite-plugin-svelte"; + +export default defineConfig({ + plugins: [svelte()], + base: "./", +});