axios-miniprogram/tsconfig.json

30 lines
606 B
JSON
Raw Normal View History

2023-03-23 20:09:00 +08:00
{
"compilerOptions": {
"rootDir": ".",
"baseUrl": ".",
"lib": ["ESNext"],
2023-04-11 22:09:29 +08:00
"target": "es2015",
2023-03-23 20:09:00 +08:00
"module": "ESNext",
"strict": true,
2023-03-27 21:29:14 +08:00
"noEmit": true,
2023-05-14 21:44:08 +08:00
"stripInternal": true,
2023-04-09 15:20:10 +08:00
"moduleResolution": "node",
2023-04-11 22:09:29 +08:00
"skipLibCheck": true,
"skipDefaultLibCheck": true,
2023-04-17 00:00:45 +08:00
"allowSyntheticDefaultImports": true,
2023-04-09 15:20:10 +08:00
"paths": {
"@/*": ["src/*"]
2023-04-14 18:16:39 +08:00
}
2023-03-23 20:09:00 +08:00
},
2023-04-17 00:00:45 +08:00
"include": [
"./src",
"./test",
2023-05-14 20:55:47 +08:00
"./scripts",
2023-04-17 00:00:45 +08:00
"./rollup.config.ts",
"./vitest.config.ts",
"./global.d.ts",
"./global.variables.d.ts"
],
2023-04-11 22:09:29 +08:00
"exclude": ["node_modules", "**/*.md", "**/dist"]
2023-03-23 20:09:00 +08:00
}