axios-miniprogram/tsconfig.json

20 lines
448 B
JSON

{
"compilerOptions": {
"rootDir": ".",
"baseUrl": ".",
"lib": ["ESNext"],
"target": "es2015",
"module": "ESNext",
"strict": true,
"noEmit": true,
"moduleResolution": "node",
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"paths": {
"@/*": ["src/*"]
}
},
"include": ["./src", "./test", "./global.d.ts", "./global.variables.d.ts"],
"exclude": ["node_modules", "**/*.md", "**/dist"]
}