Skip to content

Commit

Permalink
fix: clean config
Browse files Browse the repository at this point in the history
  • Loading branch information
hugomrdias committed Dec 17, 2020
1 parent dae2181 commit a3bd075
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 25 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"dirty-chai": "^2.0.1",
"electron-mocha": "^9.3.3",
"eslint": "^7.11.0",
"eslint-config-ipfs": "ipfs/eslint-config-ipfs#feat/standard-ts",
"eslint-config-ipfs": "^1.0.0",
"execa": "^4.1.0",
"extract-zip": "^2.0.1",
"findup-sync": "^4.0.0",
Expand Down
44 changes: 20 additions & 24 deletions src/config/tsconfig.aegir.json
Original file line number Diff line number Diff line change
@@ -1,39 +1,35 @@
{
"compilerOptions": {
"strict": true,
// project options
"outDir": "dist",
"allowJs": true,
"checkJs": true,
"isolatedModules": true,
"importsNotUsedAsValues": "error",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": false,
"noImplicitAny": true,
"noImplicitThis": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": false,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"strictBindCallApply": true,
"strict": true,
"skipLibCheck": true,
"alwaysStrict": true,
"esModuleInterop": true,
"stripInternal": true,
"resolveJsonModule": true,
"preserveConstEnums": true,
"removeComments": false,
"target": "ES2019",
"moduleResolution": "node",
"lib": ["ES2019", "ES2020.Promise", "ES2020.String", "ES2020.BigInt", "DOM", "DOM.Iterable"],
"noEmitOnError": true,
"noEmit": false,
"noEmitOnError": true,
"emitDeclarationOnly": true,
"declaration": true,
"declarationMap": true,
"incremental": true,
"composite": true,
"outDir": "dist"
"isolatedModules": true,
"removeComments": false,
// module resolution
"esModuleInterop": true,
"moduleResolution": "node",
// linter checks
"noImplicitReturns": false,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": false,
// advanced
"importsNotUsedAsValues": "error",
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"stripInternal": true,
"resolveJsonModule": true
},
"include": ["src"]
}

0 comments on commit a3bd075

Please sign in to comment.