unplugin/tsconfig.json
yuyin 83d6795cee
docs: move docs (#369)
Co-authored-by: wawa0584 <60140118+WestonSeyler@users.noreply.github.com>
Co-authored-by: 三咲智子 Kevin Deng <sxzz@sxzz.moe>
2024-03-09 18:36:05 +01:00

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"
]
}