Initial commit
This commit is contained in:
21
tsconfig.json
Normal file
21
tsconfig.json
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"extends": "./tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
||||
"jsx": "react-jsx",
|
||||
"paths": {
|
||||
"@/*": ["./src/*"],
|
||||
"@shared": ["./shared"],
|
||||
"@shared/*": ["./shared/*"],
|
||||
"@shared/types": ["./shared/types"],
|
||||
"@shared/constants": ["./shared/constants"],
|
||||
"@shared/constants/*": ["./shared/constants/*"],
|
||||
"@shared/utils": ["./shared/utils"],
|
||||
"@shared/utils/*": ["./shared/utils/*"],
|
||||
"@shared/errors": ["./shared/errors"]
|
||||
},
|
||||
"types": ["vite/client"]
|
||||
},
|
||||
"include": ["src", "shared"],
|
||||
"exclude": ["src/**/*.test.ts", "src/**/*.test.tsx", "src/**/__tests__/**"]
|
||||
}
|
||||
Reference in New Issue
Block a user