mirror of
https://github.com/Brotocol-xyz/bro-sdk.git
synced 2026-01-12 06:44:18 +08:00
26 lines
610 B
JSON
26 lines
610 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig.json",
|
|
"exclude": [
|
|
"node_modules",
|
|
"lib",
|
|
"examples/cross-chain-swap",
|
|
"examples/bridgeFrom",
|
|
"generated/docs"
|
|
],
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"target": "esnext",
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"moduleResolution": "node",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedIndexedAccess": false,
|
|
"skipLibCheck": true,
|
|
"lib": ["ES2023", "WebWorker"],
|
|
"noEmit": true
|
|
}
|
|
}
|