proton-pmcrypto/tsconfig.json
larabr f12f1bc662 Linter: update to eslint v9
This eslint version brings breaking changes related to the eslint config.
eslint-airbnb-config has yet to release a compatible version with the
new format, and it generally looks unmaintained, hence we drop the dependency
in favor of the built-in recommended configs.
2025-09-22 14:16:15 +02:00

15 lines
447 B
JSON

{
"compilerOptions": {
"target": "es2021",
"moduleResolution": "Bundler",
"module": "esnext",
"strict": true,
"sourceMap": true,
"allowJs": true,
"noEmit": true,
"noEmitOnError": true,
"allowSyntheticDefaultImports": true, // for BN.js (forwarding tests)
"types": ["webpack-env", "mocha"], // avoid pulling in node types
"lib": ["dom", "esnext"]
},
}