**TypeScript Version:** 3.8.0-dev.20191026 **Search Terms:** json, declarations **Code** ```jsonc // tsconfig.json { "include": ["src/**/*", "src/**/*.json"], "compilerOptions": { "rootDir": "src", "outDir": "dist", "resolveJsonModule": true, "declaration": true } } ``` ```jsonc // src/test.json {} ``` **Expected behavior:** ``` dist └── test.json ``` (same as on v3.6.4) **Actual behavior:** ``` dist ├── test.d.ts └── test.json ``` **Playground Link:** **Related Issues:** #34676