mirror of
https://github.com/vercel/commerce.git
synced 2025-05-17 15:06:59 +00:00
* sync changes with latest changes Signed-off-by: Chloe <pinkcloudvnn@gmail.com> * fix typescripts Signed-off-by: Chloe <pinkcloudvnn@gmail.com> * fix all types issue and checkout process Signed-off-by: Chloe <pinkcloudvnn@gmail.com> * fix some types Signed-off-by: Chloe <pinkcloudvnn@gmail.com> * several fixes Signed-off-by: Chloe <pinkcloudvnn@gmail.com> * remove console log Signed-off-by: Chloe <pinkcloudvnn@gmail.com> --------- Signed-off-by: Chloe <pinkcloudvnn@gmail.com>
22 lines
523 B
JSON
22 lines
523 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"outDir": "dist",
|
|
"baseUrl": "src",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"declaration": true,
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"incremental": true,
|
|
"jsx": "react-jsx"
|
|
},
|
|
"include": ["src", "global.d.ts"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|