* applied eslint * add locales and lint the project * removed error boundary * updated locales * fix min files * fix locales
41 lines
1 KiB
JSON
41 lines
1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"noImplicitAny": true,
|
|
"alwaysStrict": true,
|
|
"strictNullChecks": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"target": "ES2017",
|
|
"lib": ["dom", "es2022", "esnext"],
|
|
"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",
|
|
"app/**/*.ts",
|
|
"app/**/*.tsx",
|
|
"app/**/*.js",
|
|
"app/**/*.jsx",
|
|
"window.d.ts"
|
|
]
|
|
}
|