feat: add typescript configs

This commit is contained in:
Sebin Nyshkim 2022-09-26 17:12:05 +02:00
parent b690a63516
commit 2e90b91464
3 changed files with 25 additions and 0 deletions

16
tsconfig.json Normal file
View file

@ -0,0 +1,16 @@
{
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
},
"references": [
{
"path": "./tsconfig.config.json"
}
]
}