snort/packages/system/tsconfig.json

19 lines
404 B
JSON
Raw Normal View History

2023-06-08 10:45:23 +00:00
{
"compilerOptions": {
"baseUrl": "src",
"target": "ES2020",
"moduleResolution": "node",
"esModuleInterop": true,
"noImplicitOverride": true,
"module": "CommonJS",
"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",
"skipLibCheck": true
},
2023-06-12 13:15:45 +00:00
"include": ["src/**/*.ts"],
2023-06-08 10:45:23 +00:00
"files": ["src/index.ts"]
}