rollup.tsconfig.json 364 B

123456789101112131415
  1. {
  2. "compilerOptions": {
  3. "target": "es6",
  4. "module": "esnext",
  5. "allowSyntheticDefaultImports": true,
  6. "importHelpers": true,
  7. "typeRoots": ["./node_modules/@types"],
  8. "declaration": true,
  9. "noImplicitReturns": true,
  10. "noImplicitThis": true,
  11. "noImplicitUseStrict": false,
  12. "noImplicitAny": false
  13. },
  14. "exclude": ["node_modules"]
  15. }