mirror of
https://github.com/ershisan99/flashcards-admin-bot.git
synced 2025-12-16 20:59:25 +00:00
24 lines
608 B
JSON
24 lines
608 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2022",
|
|
"module": "node16",
|
|
"lib": ["ES2022"],
|
|
"moduleResolution": "node16",
|
|
"rootDir": ".",
|
|
"outDir": "build",
|
|
"allowSyntheticDefaultImports": true,
|
|
"importHelpers": true,
|
|
"alwaysStrict": true,
|
|
"sourceMap": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noImplicitAny": false,
|
|
"noImplicitThis": false,
|
|
"strictNullChecks": false
|
|
},
|
|
"include": ["src/**/*", "__tests__/**/*"]
|
|
}
|