tsconfig.json 422 B

123456789101112131415161718
  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": "nodenext",
  17. },
  18. }