The official leaked source code of the Dyno Discord Bot.
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.

17 lines
413 B

4 years ago
  1. {
  2. "compilerOptions": {
  3. "target": "es2017",
  4. "module": "commonjs",
  5. "strict": true,
  6. "noImplicitAny": true,
  7. "strictNullChecks": true,
  8. "noImplicitThis": true,
  9. "alwaysStrict": true,
  10. "noUnusedLocals": true,
  11. "noUnusedParameters": true,
  12. "noImplicitReturns": true,
  13. "noFallthroughCasesInSwitch": true,
  14. "moduleResolution": "node",
  15. "lib": ["es2017"]
  16. },
  17. "files": ["src/index.d.ts"]
  18. }