Tether/JS-SDK/tsconfig.json
2024-09-09 20:28:31 -04:00

37 lines
750 B
JSON

{
"compilerOptions": {
"module": "esnext",
"lib": [
"dom",
"esnext"
],
"target": "ESNext",
"moduleResolution": "node",
"jsx": "react",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"useUnknownInCatchVariables": true,
"noImplicitOverride": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"exactOptionalPropertyTypes": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"paths": {
"@/*": [
"./src/*"
],
"@/lib/*": [
"./src/lib/*"
],
"@/types/*": [
"./src/types/*"
]
}
},
"include": [
"src"
]
}