Files
stxer-sdk/tsconfig.json
stxer f5322379b3 chore(tsconfig): pin target=es2020 (covers Array#entries iter + BigInt)
@tsconfig/recommended only guarantees target=es2016, which leaves
ts2802 (cannot iterate ArrayIterator) and BigInt resolution sensitive
to whatever the consuming tooling decides. Pin target explicitly to
es2020 so Array#entries iteration in the samples and BigInt() calls
in src/sample/_helpers.ts both type-check regardless of how the
extended config evolves.
2026-04-27 02:50:57 -04:00

13 lines
283 B
JSON

{
"extends": "@tsconfig/recommended/tsconfig.json",
"include": ["src", "types"],
"compilerOptions": {
"target": "es2020",
"module": "esnext",
"allowImportingTsExtensions": false,
"moduleResolution": "node",
"esModuleInterop": true,
"noEmit": true
}
}