19 lines
562 B
JSON
19 lines
562 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"noEmit": true,
|
|
"target": "esnext",
|
|
"strict": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
// as far as i can tell there is no way to define a type that indicates a
|
|
// valid index for some value. this makes this pretty much impossible to use
|
|
//"noUncheckedIndexedAccess": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"types": ["jest"]
|
|
}
|
|
}
|