-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore(packages): update to latest non-breaking versions * chore(packages): update to latest breaking versions * typecheck(web): remove unused import * format(*): formatted all files with `pretter`
- Loading branch information
1 parent
45c7260
commit a09d9e1
Showing
5 changed files
with
7,668 additions
and
6,266 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
import React from 'react'; | ||
|
||
const BohrThreeDimensional = ( | ||
props: Readonly<{ | ||
src: string; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,40 @@ | ||
{ | ||
"extends": ["@poolofdeath20/tsconfig/next"], | ||
"include": ["*.d.ts", "**/*.ts", "**/.tsx"], | ||
"exclude": ["node_modules"] | ||
"exclude": ["node_modules"], | ||
"compilerOptions": { | ||
// typecheck | ||
"allowUnreachableCode": false, | ||
"allowUnusedLabels": false, | ||
"exactOptionalPropertyTypes": true, | ||
"noFallthroughCasesInSwitch": true, | ||
"noImplicitOverride": true, | ||
"noImplicitReturns": true, | ||
"noPropertyAccessFromIndexSignature": true, | ||
"noUncheckedIndexedAccess": true, | ||
"noUnusedLocals": true, | ||
"noUnusedParameters": true, | ||
"useUnknownInCatchVariables": true, | ||
"strict": true, | ||
|
||
// modules | ||
"resolveJsonModule": true, | ||
"module": "esnext", | ||
"moduleResolution": "node", | ||
|
||
// emit | ||
"noEmit": true, | ||
|
||
// interop | ||
"esModuleInterop": true, | ||
"allowSyntheticDefaultImports": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"verbatimModuleSyntax": true, | ||
|
||
// output formatting | ||
"pretty": true, | ||
|
||
// completeness | ||
"skipLibCheck": true | ||
} | ||
} |
Oops, something went wrong.