Skip to content

Commit

Permalink
Merge branch 'build/add-ts' into feat/identity/verified-merged
Browse files Browse the repository at this point in the history
  • Loading branch information
seaerchin committed Feb 28, 2022
2 parents ae05aa9 + 22514e3 commit 0050306
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 5 deletions.
12 changes: 12 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
"yaml": "^1.10.2"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"auto-changelog": "^2.4.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.21.0",
Expand All @@ -71,7 +72,8 @@
"jest": "^27.2.2",
"lint-staged": "^11.1.2",
"prettier": "2.2.1",
"sequelize-cli": "^6.2.0"
"sequelize-cli": "^6.2.0",
"typescript": "^4.5.5"
},
"config": {
"commitizen": {
Expand Down
19 changes: 15 additions & 4 deletions jsconfig.json → tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,23 @@
{
"extends": "@tsconfig/recommended/tsconfig.json",
"compilerOptions": {
"target": "es2017",
"lib": ["ES2017"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": false,
"jsx": "react",
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"isolatedModules": true,
"noEmit": true,
"downlevelIteration": true,
"baseUrl": "./",
"resolveJsonModule": true,
"sourceMap": true,
"paths": {
"@root/*": ["./*"],
"@classes/*": ["./classes/*"],
Expand All @@ -12,11 +26,8 @@
"@middleware/*": ["./middleware/*"],
"@routes/*": ["./routes/*"],
"@utils/*": ["./utils/*"],
"@loaders/*": ["./loaders/*"],
"@database/*": ["./database/*"],
"@services/*": ["./services/*"],
"@validators/*": ["./validators/*"],
"@controllers/*": ["./controllers/*"],
"@fixtures/*": ["./fixtures/*"]
}
},
Expand Down

0 comments on commit 0050306

Please sign in to comment.