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/*"],
|
|
|
|
"@assets/*": ["assets/*"],
|
2020-11-04 11:50:23 -03:00
|
|
|
"@config/*": ["config/*"],
|
2020-10-14 12:47:22 -05:00
|
|
|
"@components/*": ["components/*"],
|
2020-12-29 19:14:23 -05:00
|
|
|
"@utils/*": ["utils/*"],
|
|
|
|
"@commerce/*": ["framework/commerce/*"],
|
2020-12-29 20:04:26 -05:00
|
|
|
"@commerce": ["framework/commerce"],
|
|
|
|
"@framework/*": ["framework/bigcommerce/*"],
|
|
|
|
"@framework": ["framework/bigcommerce"]
|
2020-09-30 11:44:38 -05:00
|
|
|
}
|
|
|
|
},
|
2020-10-03 05:20:19 -05:00
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "**/*.js"],
|
2020-09-30 11:44:38 -05:00
|
|
|
"exclude": ["node_modules"]
|
|
|
|
}
|