Add React editor project

This commit is contained in:
Rami Bitar
2026-08-09 16:00:10 -04:00
parent 909d99251a
commit 63ecc5e284
212 changed files with 20655 additions and 11571 deletions
+21 -41
View File
@@ -1,64 +1,44 @@
{
"compilerOptions": {
"target": "ES2022",
"target": "ES2017",
"lib": [
"ES2022",
"DOM",
"DOM.Iterable"
"dom",
"dom.iterable",
"esnext"
],
"module": "ESNext",
"moduleResolution": "Bundler",
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
"incremental": true,
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowJs": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"types": [
"node"
],
"baseUrl": ".",
"paths": {
"@/*": [
"./*"
],
"~/*": [
"./*"
]
},
"plugins": [
{
"name": "next"
},
{
"name": "@shopify/hydrogen/ts-plugin"
}
]
],
"paths": {
"@/*": [
"./*"
]
}
},
"include": [
"next-env.d.ts",
"app",
"api",
"components",
"config",
"contexts",
"graphql",
"hooks",
"lib",
"services",
"vendor",
"next.config.mjs",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": [
"node_modules",
"dist",
".next"
"node_modules"
]
}