axios-miniprogram/tsconfig.json

23 lines
448 B
JSON
Raw Normal View History

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