mirror of
https://github.com/unjs/unplugin.git
synced 2025-12-08 20:26:33 +00:00
Co-authored-by: wawa0584 <60140118+WestonSeyler@users.noreply.github.com> Co-authored-by: 三咲智子 Kevin Deng <sxzz@sxzz.moe>
28 lines
465 B
JSON
28 lines
465 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"paths": {
|
|
"unplugin": [
|
|
"./src/index.ts"
|
|
]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"types": [
|
|
"node"
|
|
],
|
|
"strict": true,
|
|
"declaration": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"src",
|
|
"test",
|
|
"docs/.vitepress"
|
|
]
|
|
}
|