openreplay/frontend/tsconfig.json
2025-02-14 12:32:45 +01:00

34 lines
956 B
JSON

{
"compilerOptions": {
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"noImplicitAny": false,
"alwaysStrict": true,
"strictNullChecks": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"target": "ES2017",
"lib": ["dom", "es2022"],
"allowJs": true,
"isolatedModules": true,
"moduleResolution": "node",
"noEmit": true,
"jsx": "react",
"paths": {
"@/*": ["./app/*"],
"App/*": ["./app/*"],
"SVG/*": ["./app/svg/*"],
"Components/*": ["./app/components/*"],
"Types/*": ["./app/types/*"],
"UI/*": ["./app/components/ui/*"],
"UI": ["./app/components/ui"],
"Shared/*": ["./app/components/shared/*"],
"Player/*": ["./app/player/*"],
"Player": ["./app/player"],
"HOCs/*": ["./app/components/hocs/*"],
}
},
"include": ["app"]
}