tsconfig.json 491 B

1234567891011121314151617181920
  1. {
  2. "compilerOptions": {
  3. "baseUrl": ".",
  4. "outDir": "lib",
  5. "target": "ES2015",
  6. "removeComments": true,
  7. "module": "ES2015",
  8. "declaration": true,
  9. "declarationDir": "types",
  10. "esModuleInterop": true,
  11. "skipLibCheck": true,
  12. "importHelpers": true,
  13. "forceConsistentCasingInFileNames": true,
  14. "paths": {
  15. "tslib" : ["node_modules/tslib/tslib.d.ts"]
  16. }
  17. },
  18. "include": ["sdk/**/*.ts"],
  19. "exclude": ["node_modules"]
  20. }