2023-04-08 05:20:27 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "commonjs",
|
|
|
|
|
"target": "ES2020",
|
2023-04-13 13:57:14 +00:00
|
|
|
"lib": ["ES2020", "dom"],
|
|
|
|
|
"sourceMap": true,
|
2023-06-22 06:22:35 +00:00
|
|
|
"esModuleInterop": true,
|
2023-09-15 03:05:46 +00:00
|
|
|
"resolveJsonModule": true,
|
2023-12-06 14:06:01 +00:00
|
|
|
"strict": true,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true
|
2023-05-24 16:21:38 +00:00
|
|
|
},
|
2023-12-06 14:06:01 +00:00
|
|
|
"include": ["./src", "./tests/**/*.test.ts"]
|
2023-04-08 05:20:27 +00:00
|
|
|
}
|