snort/packages/worker-relay/tsconfig.json

19 lines
409 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,
2024-02-29 12:11:06 +00:00
"declarationMap": true,
2024-01-15 16:57:20 +00:00
"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
}