Files
domain-watchdog/tsconfig.json

21 lines
391 B
JSON
Raw Normal View History

2024-07-19 02:28:05 +02:00
{
"compilerOptions": {
"target": "es5",
"jsx": "react",
"module": "esnext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
2024-07-19 23:46:07 +02:00
"esModuleInterop": true,
"lib": [
"es6",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true
2024-07-19 02:28:05 +02:00
},
"include": [
"assets/**/*"
]
}