Tether/use-tether/tsconfig.json

37 lines
750 B
JSON
Raw Normal View History

2024-09-09 16:05:48 -07:00
{
2024-09-09 17:28:31 -07:00
"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"
]
}