2024-09-24 20:57:08 +04:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"jsx": "react",
|
|
|
|
"target": "ES6",
|
2024-10-20 22:28:06 +04:00
|
|
|
"lib": ["dom", "ES2023"],
|
2024-09-24 20:57:08 +04:00
|
|
|
"moduleResolution": "Node",
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"baseUrl": "./",
|
|
|
|
"paths": {
|
|
|
|
"@public/*": ["public/*"],
|
|
|
|
"@components/*": ["src/components/*"],
|
2024-10-20 22:28:06 +04:00
|
|
|
"@storage/*": ["src/utils/storage/*"],
|
2024-09-24 20:57:08 +04:00
|
|
|
"@store/*": ["src/store/*"],
|
|
|
|
"@utils/*": ["src/utils/*"],
|
|
|
|
},
|
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"name": "typescript-plugin-css-modules"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|