mirror of
https://github.com/unjs/unstorage.git
synced 2025-12-08 21:26:09 +00:00
30 lines
807 B
JSON
30 lines
807 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"moduleDetection": "force",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"strict": true,
|
|
"isolatedModules": false, // TODO
|
|
"verbatimModuleSyntax": true,
|
|
"erasableSyntaxOnly": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitAny": false, // TODO
|
|
"noImplicitOverride": true,
|
|
"noEmit": true,
|
|
"skipLibCheck": true,
|
|
"composite": true,
|
|
// "isolatedDeclarations": true,
|
|
"allowImportingTsExtensions": true,
|
|
"types": ["node", "deno"],
|
|
"paths": {
|
|
"unstorage/drivers/*": ["./src/drivers/*.ts"]
|
|
}
|
|
},
|
|
"include": ["src", "test"]
|
|
}
|