mirror of
https://github.com/Expand-sys/spotdlweb
synced 2025-12-15 13:32:25 +11:00
22 lines
517 B
JSON
22 lines
517 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["ESNext"],
|
|
"module": "ES2022",
|
|
"target": "esnext",
|
|
"moduleResolution": "Node",
|
|
"moduleDetection": "force",
|
|
"allowImportingTsExtensions": true,
|
|
"noEmit": true,
|
|
"composite": true,
|
|
"strict": true,
|
|
"downlevelIteration": true,
|
|
"skipLibCheck": true,
|
|
"jsx": "react-jsx",
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowJs": true,
|
|
"types": [
|
|
"bun-types" // add Bun global
|
|
]
|
|
}
|
|
}
|