mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2025-10-26 11:27:18 +00:00
32 lines
787 B
JSON
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"]
|
|
}
|