axios-miniprogram/tsconfig.json

23 lines
448 B
JSON
Raw Normal View History

2020-04-14 23:45:21 +08:00
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"lib": [
2020-07-27 11:35:35 +08:00
"es2020"
2020-04-14 23:45:21 +08:00
],
"declaration": true,
"declarationDir": "./types",
"sourceMap": true,
"removeComments": false,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"moduleResolution": "node",
"baseUrl": "./",
"esModuleInterop": true,
"skipLibCheck": true,
},
"include": [
"./src/**/*"
]
}