@shopify/cli
Version:
A CLI tool to build for the Shopify platform
44 lines (43 loc) • 1.01 kB
JSON
{
"include": [
"env.d.ts",
"app/**/*.ts",
"app/**/*.tsx",
"app/**/*.d.ts",
"*.ts",
"*.tsx",
"*.d.ts",
".graphqlrc.ts",
".react-router/types/**/*"
],
"exclude": ["node_modules", "dist", "build", "packages/**/dist/**/*"],
"compilerOptions": {
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"isolatedModules": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"module": "ES2022",
"target": "ES2022",
"strict": true,
"allowJs": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"baseUrl": ".",
"types": [
"@shopify/oxygen-workers-types",
"react-router",
"@shopify/hydrogen/react-router-types",
"vite/client"
],
"paths": {
"~/*": ["app/*"]
},
"noEmit": true,
"rootDirs": [".", "./.react-router/types"],
"incremental": true,
"composite": false,
"verbatimModuleSyntax": true
}
}