openreplay/frontend/tsconfig.json
Shekar Siri 8facbb9d6e
change(ui) - navigation (#1427)
* change(ui): route refactor

* change(ui): new navigation

* change(ui): new navigation - icons and other fixes
2023-07-27 12:40:36 +02:00

36 lines
1,007 B
JSON

{
"compilerOptions": {
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"alwaysStrict": true,
"strictNullChecks": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"esModuleInterop": true,
// "module": "es6",
// "module": "es2020",
"target": "es6",
"allowJs": true,
"isolatedModules": true,
"moduleResolution": "node",
"noEmit": true,
"jsx": "react",
// "baseUrl": ".",
"paths": {
"Shared/*": ["./app/components/shared/*"],
"App/*": ["./app/*"],
"Components/*": ["./app/components/*"],
"UI/*": ["./app/components/ui/*"],
"UI": ["./app/components/ui"],
"Player/*": ["./app/player/*"],
"Player": ["./app/player"],
"HOCs/*": ["./app/components/hocs/*"],
"Types/*": ["./app/types/*"],
"Duck/*": ["./app/duck/*"],
"MOBX/*": ["./app/mstore/*"],
}
},
"include": ["app"]
}