axios-cache-interceptor/build/tsconfig.build.json
2022-01-23 16:10:15 -03:00

17 lines
379 B
JSON

{
"extends": "../tsconfig.json",
"compilerOptions": {
"module": "ESNext", // webpack converts to UMD
"target": "ESNext",
// Emits all import helpers as an import to tslib
// This allows webpack to be better at tree shaking
"importHelpers": true,
// No declaration
"declaration": false,
"declarationMap": false
},
"include": ["../src"]
}