axios-miniprogram/tsconfig.json

20 lines
413 B
JSON
Raw Normal View History

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