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 400B

1234567891011121314151617181920
  1. {
  2. "compilerOptions": {
  3. "target": "es5",
  4. "module": "commonjs",
  5. "declaration": true,
  6. "rootDir": ".",
  7. "strict": true,
  8. "noUnusedLocals": true,
  9. "noUnusedParameters": true,
  10. "noImplicitReturns": true,
  11. "moduleResolution": "node",
  12. "esModuleInterop": true,
  13. "stripInternal": true,
  14. "lib": ["es2015"]
  15. },
  16. "exclude": [
  17. "node_modules",
  18. "test/data"
  19. ]
  20. }