I have a folder structure like this
--src
-services
test.ts
-pages
-testFolder
-testFolder.vue
--tsconfig.json
Now in the testFolder.vue i am trying to access test.ts .
I wrote like this ../../services/test
, this is working. Is there any possibility that i can use some thing like this ./services/test
or services/test. How do i configure in tsconfig.json
.