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 a0991e9 commit e4637d4
Showing 1 changed file with 20 additions and 24 deletions.
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 e4637d4

Please sign in to comment.