http/tsconfig.json

18 lines
367 B
JSON
Raw Normal View History

2023-06-19 09:19:48 +08:00
{
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": ["./playground/src/*", "./playground/src/env.d.ts", "./playground/src/**/*.vue"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@crami/http":["./src/index.ts"],
"~/*": ["./playground/src/*"],
}
},
"references": [
{
"path": "./tsconfig.config.json"
}
]
}