pseudosubs-v1/tsconfig.json

18 lines
304 B
JSON
Raw Normal View History

2018-10-15 15:54:59 +00:00
{
2024-02-29 00:56:03 +00:00
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
2018-10-15 15:54:59 +00:00
"compilerOptions": {
"baseUrl": ".",
2024-02-29 15:32:18 +00:00
"esModuleInterop": true,
2018-10-15 15:54:59 +00:00
"paths": {
2024-02-29 00:56:03 +00:00
"@/*": ["./src/*"]
}
2018-10-15 15:54:59 +00:00
},
2024-02-29 00:56:03 +00:00
"references": [
{
"path": "./tsconfig.config.json"
}
2018-10-15 15:54:59 +00:00
]
}