snort/packages/system-react/tsconfig.json

19 lines
406 B
JSON
Raw Normal View History

2023-06-16 19:31:33 +00:00
{
"compilerOptions": {
"baseUrl": "src",
2023-10-06 12:16:28 +00:00
"target": "ESNext",
"moduleResolution": "Bundler",
2023-06-16 19:31:33 +00:00
"esModuleInterop": true,
"noImplicitOverride": true,
2024-01-30 22:04:19 +00:00
"module": "ESNext",
2023-06-16 19:31:33 +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-06-16 19:31:33 +00:00
}