add jsconfig.json

This commit is contained in:
Dawid Wysokiński 2020-07-30 11:47:20 +02:00
parent d14a057f4b
commit e14edc6f13
1 changed files with 15 additions and 0 deletions

15
jsconfig.json Normal file
View File

@ -0,0 +1,15 @@
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@components/*": ["src/components/*"],
"@config/*": ["src/config/*"],
"@features/*": ["src/features/*"],
"@images/*": ["src/images/*"],
"@libs/*": ["src/libs/*"],
"@utils/*": ["src/utils/*"]
}
},
"exclude": ["node_modules"]
}