diff --git a/api_get.ts b/api_get.ts new file mode 100644 index 00000000..c8c09a97 --- /dev/null +++ b/api_get.ts @@ -0,0 +1,10 @@ +--- a/api_get.ts +@@ -10,7 +10,6 @@ + function fetchData() { + // @ts-ignore + const data = getRawData(); +- return processData(data); ++ return processData(data as any); + } + + export { fetchData }; diff --git a/apps/cli/main.py b/apps/cli/main.py index e1a45b45..62d1c5db 100644 --- a/apps/cli/main.py +++ b/apps/cli/main.py @@ -1,3 +1,13 @@ +diff --git a/apps/cli/main.py b/apps/cli/main.py +--- a/apps/cli/main.py +@@ -10,7 +10,6 @@ def main(): + try: + result = some_function() + except Exception as e: +- # @ts-ignore: Ignore type checking for this line + print(f"An error occurred: {e}") + + if __name__ == "__main__": --- a/apps/cli/main.py @@ -30,7 +30,8 @@ def api_get(): response = requests.get('https://api.example.com/data') diff --git a/fetch_all_issues.ts b/fetch_all_issues.ts new file mode 100644 index 00000000..3a4a38b3 --- /dev/null +++ b/fetch_all_issues.ts @@ -0,0 +1,9 @@ +diff --git a/fetch_all_issues.ts b/fetch_all_issues.ts +--- a/fetch_all_issues.ts +@@ -10,7 +10,7 @@ function fetchAllIssues() { + // @ts-ignore: This is temporary while we transition to using the new API. + const issues = await client.getAllIssues(); + +- return issues; ++ return issues as Issue[]; + } diff --git a/format_line.ts b/format_line.ts new file mode 100644 index 00000000..c2874aee --- /dev/null +++ b/format_line.ts @@ -0,0 +1,12 @@ +diff --git a/format_line.ts b/format_line.ts +index 1a2b3c4..5d6e7f8 100644 +--- a/format_line.ts +@@ -10,7 +10,7 @@ function formatLine(input: string): string { + return input.replace(/\s+/g, ' '); + } + +-// @ts-ignore ++// TODO: Resolve type safety issue + function transformLine(input: any) { + return formatLine(input); + } diff --git a/lib/offline/precacheRoutes.ts b/lib/offline/precacheRoutes.ts index ad15ed0b..8a5cd646 100644 --- a/lib/offline/precacheRoutes.ts +++ b/lib/offline/precacheRoutes.ts @@ -1,5 +1,6 @@ /** * Auto-generated precache routes manifest. + * Last Generated: 2026-08-10T01:15:44.707Z * Last Generated: 2026-08-10T01:04:50.024Z */ export const PRECACHE_ROUTES: string[] = [ diff --git a/load_seen.ts b/load_seen.ts new file mode 100644 index 00000000..9bf672f2 --- /dev/null +++ b/load_seen.ts @@ -0,0 +1,15 @@ +diff --git a/load_seen.ts b/load_seen.ts +index 1a2b3c4..5d6e7f8 100644 +--- a/load_seen.ts +@@ -1,10 +1,9 @@ + import { someFunction } from './module'; + +-function doSomething() { +- @ts-ignore +- const result = someFunction(); ++function doSomething(): void { ++ const result: any = someFunction(); + console.log(result); + } + + export { doSomething }; diff --git a/main.ts b/main.ts new file mode 100644 index 00000000..b2fe4090 --- /dev/null +++ b/main.ts @@ -0,0 +1,18 @@ +--- a/main.ts +@@ -10,7 +10,6 @@ + console.log("Hello, World!"); + } + +-// @ts-ignore + function fetchData() { + return fetch('https://api.example.com/data') + .then(response => response.json()) +@@ -20,7 +19,6 @@ function fetchData() { + return fetch('https://api.example.com/data') + .then(response => response.json()) + } + +-// @ts-ignore + async function processData(data: any) { + console.log("Processing data:", data); + } diff --git a/public/sw.js b/public/sw.js index ed596470..761ad7b9 100644 --- a/public/sw.js +++ b/public/sw.js @@ -1,11 +1,13 @@ /** * CryptoViz Service Worker (Auto-Generated Precache) + * Last Generated: 2026-08-10T01:15:44.707Z * Last Generated: 2026-08-10T01:04:50.024Z * * NOTE: This file is automatically generated by scripts/generate-sw-precache.mjs during build. * To update precached routes manually, run: npm run generate:sw or modify scripts/generate-sw-precache.mjs. */ +const CACHE_NAME = 'cryptoviz-v1786324544707'; const CACHE_NAME = 'cryptoviz-v1786323890024'; const PRECACHE_URLS = [ "/",