Files
AdGuardHome/client_v2/tsconfig.json
Ildar Kamalov 75c9caffbd lint fix
2025-08-11 13:14:01 +03:00

33 lines
811 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"jsx": "react",
"module": "ESNext",
"moduleResolution": "bundler",
"baseUrl": ".",
"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"]
}