2023-03-14 02:32:09 +03:00
|
|
|
{
|
2023-07-12 21:26:12 +03:00
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": "esm",
|
|
|
|
"target": "es2020",
|
|
|
|
"module": "es6",
|
2023-12-11 01:32:10 +03:00
|
|
|
"moduleResolution": "bundler",
|
2023-07-12 21:26:12 +03:00
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"@noble/hashes/crypto": ["src/crypto"]
|
2023-03-14 02:32:09 +03:00
|
|
|
},
|
2023-07-12 21:26:12 +03:00
|
|
|
"sourceMap": true,
|
|
|
|
"strict": true,
|
|
|
|
"allowSyntheticDefaultImports": false,
|
|
|
|
"allowUnreachableCode": false,
|
|
|
|
"esModuleInterop": false,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUncheckedIndexedAccess": false,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
},
|
|
|
|
"include": ["src"],
|
|
|
|
"exclude": ["node_modules", "lib"]
|
|
|
|
}
|