mirror of https://github.com/alibaba/arthas.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
660 B
JSON
32 lines
660 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"useDefineForClassFields": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["esnext", "dom"],
|
|
"skipLibCheck": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["all/ui/ui/src/*"],
|
|
"~/*": ["all/share/*"]
|
|
},
|
|
"experimentalDecorators": true
|
|
},
|
|
"include": [
|
|
"all/**/*.vue",
|
|
"all/**/*.ts",
|
|
"all/**/*.d.ts",
|
|
"all/env.d.ts"
|
|
],
|
|
"references": [
|
|
{ "path": "./tsconfig.node.json" }
|
|
]
|
|
}
|