axios-cache-interceptor/build/tsconfig.build.json
2022-03-11 16:31:03 -03:00

21 lines
489 B
JSON

{
"extends": "../tsconfig.json",
"compilerOptions": {
// webpack converts to UMD or CJS if needed
"module": "ESNext",
"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,
// This allow us to import javascript files from node_modules.
"allowJs": true
},
"include": ["../src"]
}