snort/packages/worker-relay/tsconfig.json

18 lines
381 B
JSON
Raw Normal View History

2024-01-15 16:57:20 +00:00
{
"compilerOptions": {
"baseUrl": "src",
"target": "ESNext",
"moduleResolution": "Bundler",
"esModuleInterop": true,
"noImplicitOverride": true,
2024-01-30 20:09:23 +00:00
"module": "ESNext",
2024-01-15 16:57:20 +00:00
"strict": true,
"declaration": true,
"inlineSourceMap": true,
"outDir": "dist",
"skipLibCheck": true
},
2024-01-30 20:09:23 +00:00
"include": ["./src/**/*.ts"],
"files": ["./src/index.ts"]
2024-01-15 16:57:20 +00:00
}