mirror of
https://github.com/mblanke/ThreatHunt.git
synced 2026-03-01 05:50:21 -05:00
23 lines
464 B
JSON
23 lines
464 B
JSON
/**
|
|
* TypeScript configuration.
|
|
*/
|
|
|
|
{
|
|
"compilerOptions": {
|
|
"target": "es2020",
|
|
"lib": ["es2020", "dom", "dom.iterable"],
|
|
"jsx": "react-jsx",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"noEmit": true
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules"]
|
|
}
|