mirror of
https://github.com/continew-org/continew-admin.git
synced 2025-09-10 08:57:14 +08:00
22 lines
452 B
JSON
22 lines
452 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ES2020",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"lib": ["es2020", "dom"],
|
|
"skipLibCheck": true,
|
|
"allowJs": true
|
|
},
|
|
"include": ["src/**/*", "src/**/*.vue"],
|
|
"exclude": ["node_modules"]
|
|
}
|