tsconfig.json 392 B

12345678910111213141516171819
  1. {
  2. "compilerOptions": {
  3. "declaration": true,
  4. "importHelpers": true,
  5. "module": "commonjs",
  6. "outDir": "lib",
  7. "rootDirs": [
  8. "./"
  9. ],
  10. "strict": true,
  11. "target": "es2017",
  12. "noImplicitAny": false,
  13. "esModuleInterop": true,
  14. "experimentalDecorators": true,
  15. "emitDecoratorMetadata": true,
  16. "skipLibCheck": true,
  17. },
  18. "include": ["./**/*"]
  19. }