30 lines
679 B
JSON
30 lines
679 B
JSON
{
|
|
"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,
|
|
"resolveJsonModule": true,
|
|
"composite": true,
|
|
"baseUrl": ".",
|
|
"typeRoots": ["types/", "node_modules/@types"],
|
|
"paths": {
|
|
"@solana/web3.js": ["./node_modules/@solana/web3.js/lib"]
|
|
}
|
|
}
|
|
}
|