tsconfig.json 444 B

12345678910111213141516171819
  1. {
  2. "compilerOptions": {
  3. "types": ["mocha", "node", "react"],
  4. "target": "es6",
  5. "jsx": "react",
  6. "paths": {
  7. "onion/*": ["./src/onion/*"],
  8. },
  9. "sourceMap": true,
  10. "noImplicitThis": true,
  11. "strictBindCallApply": true,
  12. "strictNullChecks": true,
  13. "strictFunctionTypes": true,
  14. "strictPropertyInitialization": true,
  15. "alwaysStrict": true,
  16. "moduleResolution": "node",
  17. "module": "commonjs",
  18. },
  19. }