2020-09-30 11:44:38 -05:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": ".",
|
2020-10-03 05:20:19 -05:00
|
|
|
"target": "esnext",
|
2020-09-30 11:44:38 -05:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"paths": {
|
2020-10-01 17:25:48 -03:00
|
|
|
"@lib/*": ["lib/*"],
|
2021-01-29 11:22:41 -03:00
|
|
|
"@utils/*": ["utils/*"],
|
2020-11-04 11:50:23 -03:00
|
|
|
"@config/*": ["config/*"],
|
2021-01-29 11:22:41 -03:00
|
|
|
"@assets/*": ["assets/*"],
|
2020-10-14 12:47:22 -05:00
|
|
|
"@components/*": ["components/*"],
|
2020-12-29 20:04:26 -05:00
|
|
|
"@commerce": ["framework/commerce"],
|
2021-02-25 09:55:02 +02:00
|
|
|
"@commerce/*": ["framework/commerce/*"],
|
2021-06-10 01:52:09 -05:00
|
|
|
"@framework": ["framework/shopify"],
|
|
|
|
"@framework/*": ["framework/shopify/*"]
|
2020-09-30 11:44:38 -05:00
|
|
|
}
|
|
|
|
},
|
2021-02-12 17:10:17 -03:00
|
|
|
"include": ["next-env.d.ts", "**/*.d.ts", "**/*.ts", "**/*.tsx", "**/*.js"],
|
2021-06-01 03:18:10 -05:00
|
|
|
"exclude": ["node_modules", "framework/swell", "framework/vendure"]
|
2020-09-30 11:44:38 -05:00
|
|
|
}
|