axios-miniprogram/tsconfig.json

15 lines
314 B
JSON
Raw Normal View History

2021-05-11 10:22:44 +08:00
{
"compilerOptions": {
"baseUrl": ".",
"outDir": "dist",
2021-05-21 14:26:22 +08:00
"target": "ES5",
2021-05-11 10:22:44 +08:00
"module": "esnext",
2021-05-21 14:26:22 +08:00
"sourceMap": true,
2021-05-11 10:22:44 +08:00
"strict": true,
2021-05-21 14:26:22 +08:00
"declaration": true,
2021-05-30 18:26:43 +08:00
"declarationDir": "dist/@types/axios-miniprogram",
2021-05-11 10:22:44 +08:00
},
2021-05-21 14:26:22 +08:00
"include": ["src/**/*", "global.d.ts"],
"exclude": ["node_modules"]
2021-05-11 10:22:44 +08:00
}