ts strict: true and noUnusedLocals: true - v1.0.5

had to do one @ts-ignore because .d.ts file for tweetnacl_mod.js are not going to happen
This commit is contained in:
stjet
2024-12-14 04:36:46 +00:00
parent 9dc83286f2
commit 295e180553
6 changed files with 33 additions and 17 deletions

View File

@@ -6,7 +6,9 @@
"typeRoots": ["./node_modules/@types"],
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
"forceConsistentCasingInFileNames": true,
"strict": true,
"noUnusedLocals": true
},
"lib": ["ES2020"],
"exclude": ["node_modules", ".build", "browser-main.ts"]