sbv2-solana/libraries/sbv2-utils/tsconfig.json

26 lines
623 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"composite": true,
"target": "ES2015",
"module": "ES2020",
"rootDir": "src",
"noImplicitAny": false,
"outDir": "lib/esm",
"skipLibCheck": true,
"esModuleInterop": true,
"noImplicitReturns": false,
"importsNotUsedAsValues": "preserve",
"strict": false,
"noEmit": false,
"emitDeclarationOnly": false,
"paths": {
"@switchboard-xyz/switchboard-v2": ["../ts"]
}
},
"include": ["src/**/*"],
"exclude": ["esbuild.js", "../ts"],
"references": [{ "path": "../ts" }],
"files": ["src/index.ts"]
}