Files
popcorntime/apps/desktop/tsconfig.json
Pochoclin cb56278a9f feat: initial commit
fix: fmt

Signed-off-by: pochoclin <hey@popcorntime.app>
2025-09-15 17:08:48 -04:00

34 lines
841 B
JSON

{
"extends": "@popcorntime/typescript-config/react-library.json",
"compilerOptions": {
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"paths": {
"@/*": ["./src/*"],
"@popcorntime/ui/*": ["../../packages/popcorntime-ui/src/*"],
"@popcorntime/i18n/*": ["../../packages/popcorntime-i18n/src/*"],
"@popcorntime/i18n/dictionaries/*": ["../../packages/popcorntime-i18n/dictionaries/*"]
}
},
"include": ["src"],
"references": [
{
"path": "tsconfig.node.json"
}
]
}