mirror of
https://github.com/vercel/commerce.git
synced 2025-05-09 19:27:53 +00:00
36 lines
1000 B
JSON
36 lines
1000 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["ES2022", "dom"],
|
|
"downlevelIteration": true,
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node",
|
|
"module": "esnext",
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"baseUrl": ".",
|
|
"noUncheckedIndexedAccess": true,
|
|
"types": ["cypress", "node", "@types/node", "@badeball/cypress-cucumber-preprocessor"],
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"paths": {
|
|
"@badeball/cypress-cucumber-preprocessor/*": [
|
|
"./node_modules/@badeball/cypress-cucumber-preprocessor/dist/subpath-entrypoints/*"
|
|
]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "cypress/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|