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.

3 vuotta sitten
12345678910111213141516171819202122
  1. {
  2. "include": ["./src/**/*"],
  3. "exclude": ["**/*.test.*"],
  4. "compilerOptions": {
  5. "declaration": true,
  6. "lib": [
  7. "es2015",
  8. "dom"
  9. ],
  10. "module": "commonjs",
  11. "moduleResolution": "node",
  12. "noImplicitAny": true,
  13. "noImplicitThis": true,
  14. "noUnusedLocals": true,
  15. "noUnusedParameters": true,
  16. "outDir": "dist",
  17. "rootDir": "src",
  18. "sourceMap": true,
  19. "strictNullChecks": true,
  20. "target": "es6"
  21. }
  22. }