cosmos-explorer/tsconfig.json

22 lines
361 B
JSON
Raw Normal View History

2023-04-03 09:08:02 +00:00
{
2023-06-17 06:02:44 +00:00
"extends": "@vue/tsconfig/tsconfig.json",
2023-04-03 09:08:02 +00:00
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
"compilerOptions": {
2023-06-19 13:33:50 +00:00
// "ignoreDeprecations": "5.0",
2023-04-03 09:08:02 +00:00
"lib": [
2023-04-07 02:11:48 +00:00
"es2022",
2023-04-03 09:08:02 +00:00
"dom"
],
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
},
"references": [
{
"path": "./tsconfig.config.json"
}
]
}