mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-10 11:05:47 +00:00
b94bede473
Add "No Unused Params and Locals" Linting Rule
27 lines
604 B
JSON
27 lines
604 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist/",
|
|
"sourceMap": true,
|
|
"strictNullChecks": true,
|
|
"module": "esnext",
|
|
"jsx": "react",
|
|
"target": "es5",
|
|
"allowJs": true,
|
|
"baseUrl": "./common/",
|
|
"lib": ["es2017", "dom"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"moduleResolution": "node",
|
|
"noEmitOnError": false,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true
|
|
},
|
|
"include": [
|
|
"./common/",
|
|
"./node_modules/types-rlp/index.d.ts",
|
|
"./node_modules/types-bn/index.d.ts"
|
|
],
|
|
"awesomeTypescriptLoaderOptions": {
|
|
"transpileOnly": true
|
|
}
|
|
}
|