2024-04-16 14:02:16 -03:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2024-09-03 10:49:59 +02:00
|
|
|
// See https://www.totaltypescript.com/tsconfig-cheat-sheet
|
|
|
|
|
/* Base Options: */
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"target": "es2022",
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"moduleDetection": "force",
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"verbatimModuleSyntax": true,
|
|
|
|
|
|
|
|
|
|
/* Strictness */
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
|
|
2024-09-11 17:53:17 +03:00
|
|
|
/* If NOT transpiling with TypeScript: */
|
2024-09-03 10:49:59 +02:00
|
|
|
"module": "NodeNext",
|
2024-09-11 17:53:17 +03:00
|
|
|
"noEmit": true,
|
2024-04-19 19:10:05 -03:00
|
|
|
},
|
|
|
|
|
"include": ["src/**/*"],
|
|
|
|
|
"exclude": ["node_modules", "dist", "**/__tests__/*"]
|
2024-04-16 14:02:16 -03:00
|
|
|
}
|