2022-05-17 09:42:04 -07:00
|
|
|
{
|
2022-05-26 12:18:08 -07:00
|
|
|
"exclude": ["node_modules"],
|
2022-05-17 09:42:04 -07:00
|
|
|
"compilerOptions": {
|
2022-06-29 18:44:33 -07:00
|
|
|
"target": "ES2019",
|
|
|
|
"lib": ["es2019", "dom"],
|
|
|
|
"module": "es2022",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"types": ["node", "mocha", "chai", "long"],
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"allowJs": false,
|
|
|
|
"checkJs": false,
|
|
|
|
"declaration": true,
|
|
|
|
"declarationMap": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"importHelpers": true,
|
|
|
|
"importsNotUsedAsValues": "error",
|
|
|
|
"inlineSources": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"paths": {
|
|
|
|
"@solana/spl-token": ["./node_modules/@solana/spl-token"]
|
|
|
|
}
|
2022-05-17 09:42:04 -07:00
|
|
|
}
|
|
|
|
}
|