tsconfig.json 681 B

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