22 lines
463 B
JSON
22 lines
463 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"jsx": "react",
|
||
|
"target": "ES6",
|
||
|
"moduleResolution": "Node",
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"baseUrl": "./",
|
||
|
"paths": {
|
||
|
"@public/*": ["public/*"],
|
||
|
"@components/*": ["src/components/*"],
|
||
|
"@storage/*": ["src/storage/*"],
|
||
|
"@store/*": ["src/store/*"],
|
||
|
"@utils/*": ["src/utils/*"],
|
||
|
},
|
||
|
"plugins": [
|
||
|
{
|
||
|
"name": "typescript-plugin-css-modules"
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|