Skip to content

Commit ba68f27

Browse files
author
Brandon Scott
committed
Issue #51 Declaration files do not retain JSDoc comments
1 parent ae31488 commit ba68f27

1 file changed

Lines changed: 24 additions & 35 deletions

File tree

tsconfig.json

Lines changed: 24 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,25 @@
11
{
2-
"compilerOptions": {
3-
"allowJs": true,
4-
"allowSyntheticDefaultImports": true,
5-
"declaration": true,
6-
"emitDecoratorMetadata": true,
7-
"esModuleInterop": true,
8-
"experimentalDecorators": true,
9-
"forceConsistentCasingInFileNames": false,
10-
"inlineSourceMap": true,
11-
"inlineSources": true,
12-
"lib": [
13-
"dom",
14-
"dom.iterable",
15-
"esnext"
16-
],
17-
"jsx": "react",
18-
"module": "commonjs",
19-
"moduleResolution": "node",
20-
"noUnusedParameters": true,
21-
"outDir": "./dist",
22-
"removeComments": true,
23-
"resolveJsonModule": true,
24-
"skipLibCheck": true,
25-
"strict": true,
26-
"target": "es5"
27-
},
28-
"exclude": [
29-
"**/*.test.*",
30-
"node_modules",
31-
"src/setupTests.ts"
32-
],
33-
"include": [
34-
"src"
35-
]
36-
}
2+
"compilerOptions": {
3+
"allowJs": true,
4+
"allowSyntheticDefaultImports": true,
5+
"declaration": true,
6+
"emitDecoratorMetadata": true,
7+
"esModuleInterop": true,
8+
"experimentalDecorators": true,
9+
"forceConsistentCasingInFileNames": false,
10+
"inlineSourceMap": true,
11+
"inlineSources": true,
12+
"lib": ["dom", "dom.iterable", "esnext"],
13+
"jsx": "react",
14+
"module": "commonjs",
15+
"moduleResolution": "node",
16+
"noUnusedParameters": true,
17+
"outDir": "./dist",
18+
"resolveJsonModule": true,
19+
"skipLibCheck": true,
20+
"strict": true,
21+
"target": "es5"
22+
},
23+
"exclude": ["**/*.test.*", "node_modules", "src/setupTests.ts"],
24+
"include": ["src"]
25+
}

0 commit comments

Comments
 (0)