Files
DDDMicroFrontend/front-end/vite-plugin-nacos/tsconfig.json
2025-09-30 10:00:10 +08:00

24 lines
443 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "CommonJS",
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
// 生成类型声明文件
"declarationDir": "./dist"
},
"include": [
"src/**/*",
"src/types/*"
],
"exclude": [
"node_modules",
"dist"
]
}