{ "include": [ "./src", "./configs", "./jest.config.ts" ], "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, "allowUmdGlobalAccess": true, "module": "ESNext", "moduleResolution": "Node", "paths": { "*": ["./src/*"] }, "resolveJsonModule": 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 } }