Preview local Markdown files live in a web browser
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tsconfig.json 384B

123456789101112131415161718
  1. {
  2. "compilerOptions": {
  3. "target": "es5",
  4. "module": "commonjs",
  5. "outDir": "dist",
  6. "strict": true,
  7. "noImplicitAny": true,
  8. "strictNullChecks": true,
  9. "strictFunctionTypes": true,
  10. "noImplicitThis": true,
  11. "alwaysStrict": true,
  12. "noUnusedLocals": true,
  13. "noUnusedParameters": true,
  14. "noImplicitReturns": true,
  15. "esModuleInterop": true
  16. }
  17. }