| 1234567891011121314151617181920212223 |
- {
- "compilerOptions": {
- "target": "ES2020",
- "module": "CommonJS",
- "outDir": "./dist",
- "rootDir": "./",
- "strict": true,
- "esModuleInterop": true,
- "skipLibCheck": true,
- "forceConsistentCasingInFileNames": true,
- "allowJs": true,
- "checkJs": false,
- "resolveJsonModule": true // <-- 新增: 允许导入 .json 文件
- },
- "include": [
- "src/**/*.ts",
- "src/**/*.json",
- "services/**/*.ts",
- "services/**/*.js",
- "config/**/*.json" // <-- 新增: 确保 .json 文件被包含
- ],
- "exclude": ["node_modules"]
- }
|