Skip to content

Commit

Permalink
chore(build): update build configs
Browse files Browse the repository at this point in the history
  • Loading branch information
ernestoresende committed Jan 16, 2023
1 parent 9996b68 commit 12d867f
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 44 deletions.
29 changes: 0 additions & 29 deletions tsconfig.base.json

This file was deleted.

5 changes: 0 additions & 5 deletions tsconfig.build.json

This file was deleted.

32 changes: 24 additions & 8 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,27 @@
{
"compilerOptions": {
"composite": true
"rootDir": "./src",
"outDir": "./dist",
"baseUrl": ".",
"downlevelIteration": true,
"module": "ESNext",
"moduleResolution": "node",
"strict": true,
"esModuleInterop": true,
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"removeComments": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"noFallthroughCasesInSwitch": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"forceConsistentCasingInFileNames": true,
"importsNotUsedAsValues": "error",

},
"files": [],
"include": [],
"references": [
{ "path": "./tsconfig.build.json" },
{ "path": "./tsconfig.test.json" },
]
}
"include": ["src/**/*"],
"exclude": ["**/__tests__"]
}
4 changes: 2 additions & 2 deletions tsconfig.test.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"extends": "./tsconfig.base.json",
"extends": "./tsconfig.json",
"include": ["src/**/*"],
"compilerOptions": {
"noEmit": true,
"types": ["node", "jest"]
}
}
}

0 comments on commit 12d867f

Please # to comment.