this repo has no description
at main 44 lines 1.1 kB view raw
1{ 2 // Visit https://aka.ms/tsconfig to read more about this file 3 "compilerOptions": { 4 // File Layout 5 "rootDir": "./src", 6 "outDir": "./dist", 7 8 // Set up for direct usage without compilation step 9 "erasableSyntaxOnly": true, 10 "rewriteRelativeImportExtensions": true, 11 12 // Environment Settings 13 // See also https://aka.ms/tsconfig/module 14 "module": "nodenext", 15 "target": "esnext", 16 "lib": ["esnext"], 17 "types": ["node"], 18 19 // Other Outputs 20 "sourceMap": true, 21 "declaration": true, 22 "declarationMap": true, 23 24 // Stricter Typechecking Options 25 "noUncheckedIndexedAccess": true, 26 "exactOptionalPropertyTypes": true, 27 28 // Style Options 29 "noImplicitReturns": true, 30 "noImplicitOverride": true, 31 "noUnusedLocals": true, 32 "noUnusedParameters": true, 33 "noFallthroughCasesInSwitch": true, 34 "noPropertyAccessFromIndexSignature": true, 35 36 "strict": true, 37 "jsx": "react-jsx", 38 "verbatimModuleSyntax": true, 39 "isolatedModules": true, 40 "noUncheckedSideEffectImports": true, 41 "moduleDetection": "force", 42 "skipLibCheck": false 43 } 44}