axios-miniprogram/tsconfig.json

18 lines
367 B
JSON
Raw Normal View History

2023-03-23 20:09:00 +08:00
{
"compilerOptions": {
"rootDir": ".",
"baseUrl": ".",
"lib": ["ESNext"],
"target": "ESNext",
"module": "ESNext",
"strict": true,
2023-03-27 21:29:14 +08:00
"noEmit": true,
2023-04-09 15:20:10 +08:00
"moduleResolution": "node",
"paths": {
"@/*": ["src/*"]
}
2023-03-23 20:09:00 +08:00
},
2023-04-03 21:03:33 +08:00
"include": ["./src", "./test", "./global.d.ts", "./global.variables.d.ts"],
2023-03-23 20:09:00 +08:00
"exclude": ["node_modules"]
}