2022-10-13 09:50:30 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": "./dist/",
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"module": "es6",
|
|
|
|
"target": "es5",
|
|
|
|
"jsx": "react",
|
|
|
|
"allowJs": true,
|
2022-10-13 17:06:43 +02:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"baseUrl": "./src",
|
|
|
|
"paths" : {
|
|
|
|
"@components/*": ["components/*"],
|
|
|
|
"@scss/*": ["scss/*"],
|
|
|
|
}
|
2022-10-13 09:50:30 +02:00
|
|
|
}
|
|
|
|
}
|