AdGuardHome/client_v2/tsconfig.json
Ildar Kamalov 2b3e792641 fix build
2025-07-16 17:04:23 +03:00

32 lines
787 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"jsx": "react",
"module": "ESNext",
"moduleResolution": "bundler",
"allowArbitraryExtensions": true,
"resolveJsonModule": true,
"allowJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": false,
"noImplicitAny": false,
"skipLibCheck": true,
"types": [
"node",
"react",
"react-dom",
"user-agent-data-types"
],
"paths": {
"Twosky": [
"../.twosky.json"
],
"panel/*": [
"./src/*"
]
}
},
"include": ["src", "global.d.ts", "src/types/**/*.d.ts"]
}