hydrogen/packages/hydrogen/tsconfig.json
2021-11-04 15:22:30 -07:00

18 lines
423 B
JSON

{
"include": ["./src"],
"exclude": ["./framework", "**/*.example.*"],
"compilerOptions": {
"declaration": true,
"jsx": "react",
"target": "ES2018",
"outDir": "./dist/esnext",
"module": "esnext",
"moduleResolution": "node",
"lib": ["ESNext", "DOM"],
"types": ["jest", "@shopify/react-testing/matchers"],
"strict": true,
"noUnusedLocals": true,
"esModuleInterop": true
}
}