tsconfig.json 641 B

12345678910111213141516171819202122232425262728
  1. {
  2. "include": ["src"],
  3. "compilerOptions": {
  4. "moduleResolution": "node",
  5. "module": "es6",
  6. "target": "es2019",
  7. "outDir": "dist/esm/",
  8. "rootDir": "./src",
  9. "declarationDir": "dist",
  10. "sourceMap": true,
  11. "declaration": true,
  12. "declarationMap": true,
  13. "allowSyntheticDefaultImports": true,
  14. "experimentalDecorators": true,
  15. "emitDecoratorMetadata": true,
  16. "noImplicitAny": false,
  17. "esModuleInterop": true,
  18. "composite": true,
  19. "baseUrl": ".",
  20. "typeRoots": ["types/", "node_modules/@types"],
  21. "paths": {
  22. "@solana/web3.js": ["./node_modules/@solana/web3.js/lib"]
  23. }
  24. }
  25. }