money-control-frontend/tsconfig.json

56 lines
1.3 KiB
JSON

{
"include": [
"./src",
"./configs"
],
"compilerOptions": {
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"alwaysStrict": true,
"exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"useUnknownInCatchVariables": true,
"allowArbitraryExtensions": true,
"allowImportingTsExtensions": true,
"allowUmdGlobalAccess": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"paths": {
"*": ["./src/*"]
},
"resolveJsonModule": true,
"resolvePackageJsonExports": true,
"resolvePackageJsonImports": true,
"noEmit": true,
"noEmitOnError": true,
"preserveConstEnums": true,
"allowJs": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"jsx": "react-jsx",
"lib": [
"ESNext",
"DOM"
],
"skipLibCheck": true
}
}