snort/packages/nostr/tsconfig.json

16 lines
321 B
JSON
Raw Normal View History

2023-02-11 20:05:46 +00:00
{
"compilerOptions": {
2023-04-05 14:00:36 +00:00
"target": "ES2020",
2023-02-25 11:07:01 +00:00
"moduleResolution": "node",
"esModuleInterop": true,
2023-03-06 21:47:14 +00:00
"noImplicitOverride": true,
"module": "CommonJS",
2023-04-05 14:00:36 +00:00
"strict": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "dist"
2023-02-11 20:05:46 +00:00
},
2023-04-05 14:00:36 +00:00
"include": ["src", "test"]
2023-02-11 20:05:46 +00:00
}