2
0

tsconfig.json 545 B

12345678910111213141516171819202122
  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. "noUnusedLocals": true,
  15. "paths": {
  16. "tslib" : ["node_modules/tslib/tslib.d.ts"],
  17. "@/*": ["src/*"]
  18. }
  19. },
  20. "include": ["sdk/**/*.ts"],
  21. "exclude": ["node_modules"]
  22. }