strict tsconfig, reverse resolve

This commit is contained in:
stjet
2025-02-21 03:39:47 +00:00
parent 9afbfbbbfe
commit 7d7fe6da88
75 changed files with 394 additions and 149 deletions

View File

@@ -6,8 +6,10 @@
"typeRoots": ["./node_modules/@types"],
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
"forceConsistentCasingInFileNames": true,
"strict": true,
"noUnusedLocals": true
},
"lib": ["ES2020"],
"exclude": ["node_modules"]
"exclude": ["node_modules", "ts_test"]
}