mirror of
https://github.com/nbd-wtf/nostr-tools.git
synced 2025-12-09 08:38:50 +00:00
26 lines
657 B
JSON
26 lines
657 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "es2020",
|
|
"target": "es2020",
|
|
"lib": ["dom", "es2020"],
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"declaration": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"baseUrl": "./",
|
|
"typeRoots": ["."],
|
|
"types": ["node"],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": [
|
|
"index.d.ts",
|
|
"t/nostr-tools-tests.ts"
|
|
]
|
|
}
|