tsconfig.json 376 B

123456789101112131415161718192021
  1. {
  2. "compilerOptions": {
  3. "target": "es6",
  4. "module": "commonjs",
  5. "moduleResolution": "node",
  6. "sourceMap": true,
  7. "declaration": true,
  8. "removeComments": false,
  9. "noImplicitAny": true,
  10. "outDir": "built/"
  11. },
  12. "exclude": [
  13. "built",
  14. "node_modules",
  15. "testapp",
  16. "website",
  17. "scripts",
  18. "exampleTypescript",
  19. "spec/**/*"
  20. ]
  21. }