Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions api_get.ts
Original file line number Diff line number Diff line change
@@ -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 };
10 changes: 10 additions & 0 deletions apps/cli/main.py
Original file line number Diff line number Diff line change
@@ -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')
Expand Down
9 changes: 9 additions & 0 deletions fetch_all_issues.ts
Original file line number Diff line number Diff line change
@@ -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[];
}
12 changes: 12 additions & 0 deletions format_line.ts
Original file line number Diff line number Diff line change
@@ -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);
}
1 change: 1 addition & 0 deletions lib/offline/precacheRoutes.ts
Original file line number Diff line number Diff line change
@@ -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[] = [
Expand Down
15 changes: 15 additions & 0 deletions load_seen.ts
Original file line number Diff line number Diff line change
@@ -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 };
18 changes: 18 additions & 0 deletions main.ts
Original file line number Diff line number Diff line change
@@ -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);
}
2 changes: 2 additions & 0 deletions public/sw.js
Original file line number Diff line number Diff line change
@@ -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 = [
"/",
Expand Down
Loading