30 lines
722 B
JSON
30 lines
722 B
JSON
{
|
|
"compilerOptions": {
|
|
/* Language and Environment */
|
|
"target": "es2020",
|
|
|
|
/* Modules */
|
|
"module": "commonjs",
|
|
"moduleResolution": "Node",
|
|
"rootDir": "./tests",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
/* Type Checking */
|
|
"strict": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitOverride": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
|
|
/* Completeness */
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["tests/**/*"]
|
|
}
|