domain-watchdog/tsconfig.json
2024-07-19 23:46:07 +02:00

21 lines
391 B
JSON

{
"compilerOptions": {
"target": "es5",
"jsx": "react",
"module": "esnext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"esModuleInterop": true,
"lib": [
"es6",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true
},
"include": [
"assets/**/*"
]
}