cosmos-explorer/tsconfig.json
2024-07-24 15:00:48 +07:00

28 lines
450 B
JSON

{
"extends": "@vue/tsconfig/tsconfig.json",
"include": [
"env.d.ts",
"src/**/*",
"src/**/*.vue"
],
"compilerOptions": {
// "ignoreDeprecations": "5.0",
"lib": [
"es2022",
"dom"
],
"baseUrl": ".",
"paths": {
"@/*": [
"./src/*"
]
},
"preserveValueImports": false,
"isolatedModules": true,
},
"references": [
{
"path": "./tsconfig.config.json"
}
]
}