updated options in regards to imports and intelli sense

This commit is contained in:
Sebastian Wendel 2024-03-13 17:02:54 +01:00
parent 5d69276bb6
commit 4515b01deb

View file

@ -7,6 +7,8 @@
],
"compilerOptions": {
"baseUrl": ".",
"strictNullChecks": true,
"allowJs": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"jsx": "react-jsx",
@ -24,24 +26,36 @@
"@srx/components/*": [
"src/components/*"
],
"@srx/config": [
"src/config"
],
"@srx/config/*": [
"src/config/*"
],
"@srx/content": [
"src/content"
],
"@srx/content/*": [
"src/content/*"
],
"@srx/layouts": [
"src/layouts"
],
"@srx/layouts/*": [
"src/layouts/*"
],
"@srx/lib": [
"src/lib"
],
"@srx/lib/*": [
"src/lib/*"
],
"@srx/pages": [
"src/pages"
],
"@srx/pages/*": [
"src/pages/*"
],
"@srx/scripts": [
"src/scripts"
],
"@srx/scripts/*": [
"src/scripts/*"
],
"@srx/styles": [
"src/styles"
],