Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade #149

Merged
merged 3 commits into from
Nov 18, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Fix lock
  • Loading branch information
bh2smith committed Nov 18, 2024
commit 5320c390cfcfa7244d60776abf18c40d53015474
16 changes: 13 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,19 @@
"exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */
"noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */
"noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */
"noUncheckedIndexedAccess": true,
"noPropertyAccessFromIndexSignature": false,
"skipLibCheck": true
"noUncheckedIndexedAccess": true,
"noPropertyAccessFromIndexSignature": false, // This is actually loose.
"skipLibCheck": true,

// New Strict Settings
"allowUnreachableCode": false, /* Error on unreachable code */
"allowUnusedLabels": false, /* Error on unused labels */
"noImplicitOverride": true, /* Ensure overriding members are marked with override modifier */
"noEmitOnError": true, /* Do not emit outputs if any errors were reported */
"isolatedModules": true, /* Ensure each file can be safely transpiled without relying on other imports */
"forceConsistentCasingInFileNames": true, /* Ensure consistent casing in file names */
// TODO(maybe): change all type imports to explicitly say import type X from ...
// "verbatimModuleSyntax": true, /* Only allow import/export statements that are part of ES modules */
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules", "dist", "examples", "tests", "eslint.config.js"]
Expand Down
Loading