2021-03-14 20:00:43 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"declaration": true,
|
|
|
|
"declarationMap": true,
|
|
|
|
"declarationDir": "lib/types",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"baseUrl": "src",
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2021-03-14 22:08:10 -07:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
"paths": {
|
|
|
|
// This is needed so that @solana/spl-token's @solana/web3.js doesn't conflict
|
|
|
|
"@solana/web3.js": ["."]
|
|
|
|
}
|
2021-03-14 20:00:43 -07:00
|
|
|
},
|
|
|
|
"include": ["src"]
|
|
|
|
}
|