mirror of
https://github.com/ProtonMail/pmcrypto.git
synced 2026-01-11 19:46:31 +00:00
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.
15 lines
447 B
JSON
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"]
|
|
},
|
|
}
|