mirror of
https://github.com/unjs/unplugin.git
synced 2025-12-08 20:26:33 +00:00
30 lines
536 B
JSON
30 lines
536 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"lib": ["es2023"],
|
|
"moduleDetection": "force",
|
|
"module": "preserve",
|
|
"moduleResolution": "bundler",
|
|
"paths": {
|
|
"unplugin": [
|
|
"./src/index.ts"
|
|
]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"types": [
|
|
"node"
|
|
],
|
|
"strict": true,
|
|
"declaration": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"src",
|
|
"test"
|
|
]
|
|
}
|