12345678910111213141516171819202122232425262728 |
- {
- "include": ["src"],
- "compilerOptions": {
- "moduleResolution": "node",
- "module": "es6",
- "target": "es2019",
- "outDir": "dist/esm/",
- "rootDir": "./src",
- "declarationDir": "dist",
- "sourceMap": true,
- "declaration": true,
- "declarationMap": true,
- "allowSyntheticDefaultImports": true,
- "experimentalDecorators": true,
- "emitDecoratorMetadata": true,
- "noImplicitAny": false,
- "esModuleInterop": true,
- "composite": true,
- "baseUrl": ".",
- "typeRoots": ["types/", "node_modules/@types"],
- "paths": {
- "@solana/web3.js": ["./node_modules/@solana/web3.js/lib"]
- }
- }
- }
|