21 lines
445 B
JSON
21 lines
445 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "esnext",
|
||
|
|
"module": "esnext",
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"strict": true,
|
||
|
|
"jsx": "preserve",
|
||
|
|
"sourceMap": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"lib": ["esnext", "dom"],
|
||
|
|
"types": ["@dcloudio/types"],
|
||
|
|
"baseUrl": ".",
|
||
|
|
"paths": {
|
||
|
|
"@/*": ["src/*"]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"include": ["src/**/*.ts", "src/**/*.vue"],
|
||
|
|
"exclude": ["node_modules"]
|
||
|
|
}
|