mirror of
https://github.com/baairon/torlink.git
synced 2026-07-08 18:28:22 +02:00
22 lines
537 B
JSON
22 lines
537 B
JSON
{
|
|||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"lib": ["ES2023"],
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "Bundler",
|
||
|
|
"jsx": "react-jsx",
|
||
|
|
"jsxImportSource": "react",
|
||
|
|
"types": ["node"],
|
||
|
|
"strict": true,
|
||
|
|
"noUncheckedIndexedAccess": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"noEmit": true,
|
||
|
|
"allowImportingTsExtensions": true
|
||
|
|
},
|
||
|
|
"include": ["src", "scripts"],
|
||
|
|
"exclude": ["node_modules", "dist"]
|
||
|
|
}
|