git.delta.rocks / unique-network / refs/commits / ade4bc204310

difftreelog

source

js-packages/tsconfig.packages.json977 Bsourcehistory
1{2  "compilerOptions": {3    "composite": true,4    "skipLibCheck": true,56    /**7     * This needs to align with scripts/polkadot-dev-build-ts & dev-ts/loader8     * (target here is specifically tied to the minimum supported version)9     */10     "module": "nodenext",11     "moduleResolution": "nodenext",12     "target": "ES2022",13 14     /**15      * Specific compilation configs for polkadot-js projects as it is used16      * (we only compile *.d.ts via the tsc command-line)17      */18     "declaration": true,19     "emitDeclarationOnly": true,20     "jsx": "preserve",21     "verbatimModuleSyntax": false,22 23     /**24      * These appear in strictest, however we don't (yet) use them. For the most part it means25      * that we actually do have a large number of these lurking (especially on index checks)26      */27     "checkJs": false,28     "exactOptionalPropertyTypes": false,29     "noPropertyAccessFromIndexSignature": false,30     "noUncheckedIndexedAccess": false,31  },32}