mirror of
https://github.com/arthurfiorette/axios-cache-interceptor.git
synced 2025-12-08 17:36:16 +00:00
17 lines
379 B
JSON
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"]
|
|
}
|