tsconfig.json 323 B

12345678910111213
  1. {
  2. "compilerOptions": {
  3. "noImplicitAny": true,
  4. "noEmitOnError": true,
  5. "module": "commonjs",
  6. "moduleResolution": "node",
  7. "target": "ES5",
  8. "outDir": "./build",
  9. "lib": ["ES5", "ES2015.Promise", "DOM", "ES2015.Collection"],
  10. "types": ["mocha", "expect.js", "node"]
  11. },
  12. "include": ["src/*"]
  13. }