Files
contentstack-imagevault/remix/tsconfig.json

25 lines
559 B
JSON

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