mirror of
https://github.com/apache/apisix-dashboard.git
synced 2025-12-08 20:12:51 +00:00
32 lines
558 B
JSON
32 lines
558 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": [
|
|
"es2021",
|
|
"dom"
|
|
],
|
|
"allowJs": true,
|
|
"sourceMap": false,
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"baseUrl": ".",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"noImplicitAny": false,
|
|
"verbatimModuleSyntax": true,
|
|
"paths": {
|
|
"@e2e/*": [
|
|
"./*"
|
|
],
|
|
"@/*": [
|
|
"../src/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"./**/*.ts",
|
|
]
|
|
}
|