fini-ui/tsconfig.json

21 lines
737 B
JSON
Raw Normal View History

2023-04-12 14:40:19 +08:00
{
"extends": "@vue/tsconfig/tsconfig.web.json",
2023-04-21 16:54:59 +08:00
"include": ["env.d.ts", "src/**/*.vue", "shims.d.ts",],
2023-04-12 14:40:19 +08:00
"compilerOptions": {
"target": "esnext" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */,
"module": "esnext" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */,
"lib": ["esnext", "dom", "dom.iterable", "scripthost"] /* Specify library files to be included in the compilation. */,
"baseUrl": "./",
"paths": {
"@/*": ["./src/*"]
},
"types": ["element-plus/global"]
},
"references": [
{
"path": "./tsconfig.config.json"
}
]
}