chore: fix tsconfig to support webpack alias (#175)

This commit is contained in:
Yash Joshi 2021-06-25 23:49:53 +05:30 committed by GitHub
parent 77abb47b4c
commit bf0c1a3dcc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,7 +16,10 @@
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true
},
"include": ["src"]
"noEmit": true,
"baseUrl": ".",
"paths": {
"Src/*": ["./src/*"]
}
}
}