ecomm/tsconfig.json

14 lines
309 B
JSON
Raw Permalink Normal View History

2023-06-08 11:05:28 +00:00
{
2023-06-14 07:40:11 +00:00
"exclude": ["__tests__"],
2023-06-08 11:05:28 +00:00
"compilerOptions": {
"module": "CommonJS",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"target": "es2022",
"moduleResolution": "node",
"sourceMap": true,
"outDir": "./dist",
2023-06-14 07:40:11 +00:00
"rootDir": "./src",
2023-06-26 06:28:32 +00:00
"noImplicitAny": true,
2023-06-08 11:05:28 +00:00
}
}