1
0
forked from Kieran/snort
snort4/packages/system/tsconfig.json

18 lines
381 B
JSON
Raw Permalink Normal View History

2023-06-08 10:45:23 +00:00
{
"compilerOptions": {
"baseUrl": "src",
2023-10-06 12:16:28 +00:00
"target": "ESNext",
2024-01-30 22:04:19 +00:00
"moduleResolution": "Bundler",
2023-06-08 10:45:23 +00:00
"esModuleInterop": true,
"noImplicitOverride": true,
2024-01-30 22:04:19 +00:00
"module": "ESNext",
2023-06-08 10:45:23 +00:00
"strict": true,
"declaration": true,
2023-06-12 13:15:45 +00:00
"inlineSourceMap": true,
2023-06-08 10:45:23 +00:00
"outDir": "dist",
2024-01-30 22:04:19 +00:00
"skipLibCheck": true
2023-06-08 10:45:23 +00:00
},
2023-06-21 15:08:48 +00:00
"include": ["./src/**/*.ts"],
2024-01-30 22:04:19 +00:00
"exclude": ["**/*.test.ts"]
2023-06-08 10:45:23 +00:00
}