domain-watchdog/tsconfig.json

17 lines
300 B
JSON
Raw Permalink Normal View History

2024-07-22 14:45:21 +02:00
{
"compilerOptions": {
"sourceMap": true,
"noImplicitAny": true,
"module": "CommonJS",
"target": "ES6",
"jsx": "react",
"moduleResolution": "node",
"esModuleInterop": true,
"strict": true
},
"exclude": [
"node_modules",
2025-11-13 09:26:29 +01:00
"docs",
"vendor/**/*.ts"
2024-07-22 14:45:21 +02:00
]
}