Files
contentstack-imagevault/remix/tsconfig.json
Erik Tiekstra 7e64becb40 Feat/SW-3031 imagevault updates
* chore(SW-3031): Updated dependencies
* feat(SW-3031): Added Imagevault Id to title and updated delete functionality

Approved-by: Michael Zetterberg
2025-06-18 13:14:02 +00:00

27 lines
634 B
JSON

{
"extends": "../tsconfig.json",
"include": [
"env.d.ts",
"../types/**/*.ts",
"../utils/**/*.ts",
"../shared-components/**/*.ts",
"../shared-components/**/*.tsx",
"**/*.ts",
"**/*.tsx"
],
"compilerOptions": {
"types": ["@remix-run/node", "vite/client"],
"skipLibCheck": true,
"jsx": "react-jsx",
"baseUrl": ".",
"paths": {
"~/*": ["./remix/*"],
"~/types/*": ["../types/*"],
"~/utils/*": ["../utils/*"],
"~/components/*": ["./app/components/*"],
"~/hooks/*": ["./app/hooks/*"],
"~/shared-components/*": ["../shared-components/*"],
}
}
}