cool-admin-vue/packages/vite-plugin/tsconfig.json

17 lines
295 B
JSON
Raw Normal View History

2024-04-23 17:26:21 +08:00
{
"compilerOptions": {
2024-04-26 21:28:51 +08:00
"rootDir": "./src",
2024-04-23 17:26:21 +08:00
"types": ["node"],
"target": "ESNext",
"module": "CommonJS",
"declaration": true,
2024-04-26 21:28:51 +08:00
"outDir": "dist",
2024-04-23 17:26:21 +08:00
"strict": true,
"esModuleInterop": true,
"pretty": true,
2024-04-26 21:28:51 +08:00
"resolveJsonModule": true
2024-04-23 17:26:21 +08:00
},
2024-04-26 21:28:51 +08:00
"include": ["src"],
2024-04-23 17:26:21 +08:00
"exclude": ["dist"]
}