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

20 lines
433 B
JSON
Raw Normal View History

2023-06-08 10:45:23 +00:00
{
"compilerOptions": {
"baseUrl": "src",
2023-10-06 12:16:28 +00:00
"target": "ESNext",
"moduleResolution": "NodeNext",
2023-06-08 10:45:23 +00:00
"esModuleInterop": true,
"noImplicitOverride": true,
2023-10-06 12:16:28 +00:00
"module": "NodeNext",
2023-06-08 10:45:23 +00:00
"strict": true,
"declaration": true,
"declarationMap": true,
2023-06-12 13:15:45 +00:00
"inlineSourceMap": true,
2023-06-08 10:45:23 +00:00
"outDir": "dist",
2023-10-06 12:16:28 +00:00
"skipLibCheck": true,
"allowJs": true
2023-06-08 10:45:23 +00:00
},
2023-06-21 15:08:48 +00:00
"include": ["./src/**/*.ts"],
"files": ["./src/index.ts"]
2023-06-08 10:45:23 +00:00
}