12345678910111213141516171819202122232425262728 |
- {
- "include": [
- "./src/**/*"
- ],
- "compilerOptions": {
- "sourceMap": true,
- "declaration": true,
- "declarationMap": true,
- "allowSyntheticDefaultImports": true,
- "experimentalDecorators": true,
- "emitDecoratorMetadata": true,
- "noImplicitAny": false,
- "strictNullChecks": true,
- "esModuleInterop": true,
- "resolveJsonModule": true,
- "composite": true,
- "baseUrl": ".",
- "typeRoots": [
- "types/",
- "node_modules/@types"
- ],
- "paths": {
- "@solana/web3.js": [
- "./node_modules/@solana/web3.js/lib"
- ]
- }
- }
- }
|