Skip to content

Commit

Permalink
feature: common-app tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
Stepasha419a committed Jan 27, 2025
1 parent 5ecad9d commit b63aaba
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions apps/common/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"declaration": true,
"outDir": "dist",
"jsx": "react-jsx",
"baseUrl": "./src",
"paths": {
"@app/*": ["./app/*"],
"@pages": ["./pages"],
"@pages/*": ["./pages/*"],
"@widgets/*": ["./widgets/*"],
"@widgets": ["./widgets"],
"@features/*": ["./features/*"],
"@entities/*": ["./entities/*"],
"@shared/*": ["./shared/*"],
"@shared/assets": ["./shared/ui/assets"],
"@shared/constants": ["./shared/lib/constants"],
"@shared/helpers": ["./shared/lib/helpers"]
}
}
}

0 comments on commit b63aaba

Please sign in to comment.