19 lines
516 B
JSON
19 lines
516 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"noEmit": true,
|
|
"target": "esnext",
|
|
"strict": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
// currently there is no type for a valid array index.
|
|
// this makes this pretty much impossible to use.
|
|
//"noUncheckedIndexedAccess": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"types": ["jest"]
|
|
}
|
|
}
|