diff --git a/jsconfig.json b/jsconfig.json index 813ca08..04a3e53 100644 --- a/jsconfig.json +++ b/jsconfig.json @@ -1,24 +1,36 @@ { - "extends": "./.svelte-kit/tsconfig.json", - "compilerOptions": { - "allowJs": true, - "checkJs": true, - "esModuleInterop": true, - "forceConsistentCasingInFileNames": true, - "resolveJsonModule": true, - "skipLibCheck": true, - "sourceMap": true, - "strict": true, - "moduleResolution": "bundler", - "allowImportingTsExtensions": true, - "paths": { - "@images/*": ["./src/images/*"], - "@src/*": ["./src/*"], - "@static/*": ["./static/*"] - } - } - // Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias and https://kit.svelte.dev/docs/configuration#files - // - // If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes - // from the referenced tsconfig.json - TypeScript does not merge them in + "extends": "./.svelte-kit/tsconfig.json", + "compilerOptions": { + "allowJs": true, + "checkJs": true, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "resolveJsonModule": true, + "skipLibCheck": true, + "sourceMap": true, + "strict": true, + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "paths": { + "@images/*": [ + "./src/images/*" + ], + "@src/*": [ + "./src/*" + ], + "@pages/*": [ + "./src/pages/*" + ], + "@shop/*": [ + "./src/pages/shop/*" + ], + "@static/*": [ + "./static/*" + ] + } + } + // Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias and https://kit.svelte.dev/docs/configuration#files + // + // If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes + // from the referenced tsconfig.json - TypeScript does not merge them in } diff --git a/src/pages/shop/_trackers.svelte b/src/pages/shop/_trackers.svelte new file mode 100644 index 0000000..241b323 --- /dev/null +++ b/src/pages/shop/_trackers.svelte @@ -0,0 +1,5 @@ + + +
Baller
diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index e18b3fb..28a370a 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -93,8 +93,8 @@
- - + Buy + Learn more
diff --git a/src/routes/shop/+page.svelte b/src/routes/shop/+page.svelte new file mode 100644 index 0000000..e69de29 diff --git a/src/routes/shop/tracker/+page.svelte b/src/routes/shop/tracker/+page.svelte new file mode 100644 index 0000000..1f26e8a --- /dev/null +++ b/src/routes/shop/tracker/+page.svelte @@ -0,0 +1,5 @@ + + + diff --git a/src/routes/shop/trackers/+page.svelte b/src/routes/shop/trackers/+page.svelte new file mode 100644 index 0000000..9ed643c --- /dev/null +++ b/src/routes/shop/trackers/+page.svelte @@ -0,0 +1,6 @@ + + + + diff --git a/vite.config.js b/vite.config.js index 60a5888..456f4d1 100644 --- a/vite.config.js +++ b/vite.config.js @@ -23,6 +23,8 @@ export default defineConfig({ "@images": path.resolve("./src/images"), "@src": path.resolve("./src"), "@static": path.resolve("./static"), + "@pages": path.resolve("./src/pages"), + "@shop": path.resolve("./src/pages/shop"), }, }, server: {