mirror of
https://github.com/vercel/commerce.git
synced 2025-05-17 15:06:59 +00:00
62 lines
1.1 KiB
JSON
62 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"paths": {
|
|
"@lib/*": [
|
|
"lib/*"
|
|
],
|
|
"@utils/*": [
|
|
"utils/*"
|
|
],
|
|
"@config/*": [
|
|
"config/*"
|
|
],
|
|
"@assets/*": [
|
|
"assets/*"
|
|
],
|
|
"@components/*": [
|
|
"components/*"
|
|
],
|
|
"@commerce": [
|
|
"../packages/commerce/src"
|
|
],
|
|
"@commerce/*": [
|
|
"../packages/commerce/src/*"
|
|
],
|
|
"@framework": [
|
|
"../packages/local/src"
|
|
],
|
|
"@framework/*": [
|
|
"../packages/local/src/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"**/*.js"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
} |