We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
TypeScript Version: 3.8.0-dev.20191026
Search Terms: json, declarations
Code
// tsconfig.json { "include": ["src/**/*", "src/**/*.json"], "compilerOptions": { "rootDir": "src", "outDir": "dist", "resolveJsonModule": true, "declaration": true } }
// 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