21 lines
358 B
JSON
21 lines
358 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"target": "esnext",
|
|
"lib": [
|
|
"esnext"
|
|
],
|
|
"types": [],
|
|
"moduleResolution": "bundler",
|
|
"esModuleInterop": true,
|
|
"skipDefaultLibCheck": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"outDir": "dist",
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
]
|
|
}
|
|
}
|
|
}
|