snort/packages/nostr/tsconfig.json

18 lines
362 B
JSON
Raw Normal View History

2023-02-11 20:05:46 +00:00
{
"compilerOptions": {
"target": "ES2015",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"composite": true,
"outDir": "dist",
2023-02-25 11:07:01 +00:00
"moduleResolution": "node",
"esModuleInterop": true,
2023-02-28 23:10:53 +00:00
"skipLibCheck": true,
2023-03-06 21:47:14 +00:00
"noImplicitOverride": true,
"module": "CommonJS",
"strict": true
2023-02-11 20:05:46 +00:00
},
"include": ["src"]
}