tsconfig.json 607 B

123456789101112131415161718192021222324252627
  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. "allowSyntheticDefaultImports": true,
  13. "experimentalDecorators": true,
  14. "emitDecoratorMetadata": true,
  15. "noImplicitAny": true,
  16. "esModuleInterop": true,
  17. "composite": true,
  18. "baseUrl": ".",
  19. "typeRoots": ["types/", "node_modules/@types"],
  20. "paths": {
  21. "@solana/web3.js": ["../../node_modules/@solana/web3.js/lib"]
  22. }
  23. }
  24. }