Skip to content

Commit 6418ace

Browse files
committed
Preserves banner by setting removecomments false in ts config
Signed-off-by: sirugh <rugh@adobe.com>
1 parent 70b3b10 commit 6418ace

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

tsconfig.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
{
22
"compilerOptions": {
3-
"declaration": true,
3+
"declaration": false,
44
"module": "commonjs",
55
"moduleResolution": "node",
66
"noImplicitAny": true,
77
"lib": ["esnext"],
8-
"removeComments": true,
8+
"removeComments": false,
99
"preserveConstEnums": true,
1010
"outDir": "dist",
1111
"sourceMap": true
1212
},
13-
"include": ["src/**/*"],
14-
"exclude": ["node_modules", "**/*.test.ts"]
13+
"include": ["src/**/*"]
1514
}

0 commit comments

Comments
 (0)