* chore(SW-3031): Updated dependencies * feat(SW-3031): Added Imagevault Id to title and updated delete functionality Approved-by: Michael Zetterberg
27 lines
634 B
JSON
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/*"],
|
|
}
|
|
}
|
|
}
|