feat: Contentstack <-> ImageVault integration

This commit is contained in:
Michael Zetterberg
2024-03-25 11:38:14 +01:00
parent 920cbf241a
commit a706b9cf8a
39 changed files with 16647 additions and 0 deletions

21
remix/tsconfig.json Normal file
View File

@@ -0,0 +1,21 @@
{
"extends": "../tsconfig.json",
"include": [
"env.d.ts",
"../types/**/*.ts",
"../utils/**/*.ts",
"**/*.ts",
"**/*.tsx"
],
"compilerOptions": {
"jsx": "react-jsx",
"baseUrl": ".",
"paths": {
"~/*": ["./remix/*"],
"~/types/*": ["../types/*"],
"~/utils/*": ["../utils/*"],
"~/components/*": ["./app/components/*"],
"~/hooks/*": ["./app/hooks/*"]
}
}
}