snort/packages/system-web/tsconfig.json

19 lines
406 B
JSON
Raw Normal View History

2023-10-09 13:35:21 +00:00
{
"compilerOptions": {
"baseUrl": "src",
"target": "ESNext",
"moduleResolution": "Bundler",
"esModuleInterop": true,
"noImplicitOverride": true,
2024-01-30 22:04:19 +00:00
"module": "ESNext",
2023-10-09 13:35:21 +00:00
"jsx": "react-jsx",
"strict": true,
"declaration": true,
"inlineSourceMap": true,
"outDir": "dist",
"skipLibCheck": true
},
2024-01-30 22:04:19 +00:00
"include": ["./src/**/*.ts*"],
"exclude": ["**/*.test.ts"]
2023-10-09 13:35:21 +00:00
}