20 lines
520 B
JSON
20 lines
520 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "ES2020",
|
|
"lib": ["ES2020", "dom"],
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"strict": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": ["./src", "./tests/**/*.test.ts"]
|
|
}
|