* fix(medusa-js): Update ambigious type export * Create ninety-hornets-drive.md * Add to import too * Revert + update tsconfig
22 lines
507 B
JSON
22 lines
507 B
JSON
{
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"module": "esnext",
|
|
"target": "ES2015",
|
|
"outDir": "./dist",
|
|
"declarationDir": "./dist",
|
|
"esModuleInterop": true,
|
|
"declaration": true,
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"noImplicitReturns": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"noImplicitThis": true,
|
|
"allowJs": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", " **/tests/*"]
|
|
}
|