22 lines
414 B
JSON
22 lines
414 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2020",
|
|
"module": "esnext",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node",
|
|
"skipLibCheck": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitAny": true,
|
|
"allowJs": true,
|
|
"noEmit": true,
|
|
"outDir": "dist",
|
|
"resolveJsonModule": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@/lib/*": ["./src/lib/*"],
|
|
"@/types/*": ["./src/types/*"]
|
|
}
|
|
}
|
|
}
|