Skip to content

Commit 4d26545

Browse files
committed
added keywords, and fixed compilation outDir
1 parent 35e7016 commit 4d26545

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

package.json

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
},
1212
"license": "MIT",
1313
"keywords": [
14+
"intersystems",
15+
"objectscript",
1416
"multi-root ready"
1517
],
1618
"engines": {

tsconfig.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,16 @@
22
"compilerOptions": {
33
"module": "commonjs",
44
"target": "es2016",
5-
65
"noImplicitAny": false,
76
"removeComments": false,
87
"noUnusedLocals": true,
98
"noImplicitThis": true,
109
"inlineSourceMap": false,
1110
"sourceMap": true,
12-
"outDir": "../out",
11+
"outDir": "out",
1312
"preserveConstEnums": true,
1413
"strictNullChecks": true,
1514
"noUnusedParameters": false
1615
},
17-
"exclude": ["node_modules"]
16+
"exclude": ["node_modules", ".vscode-test"]
1817
}

0 commit comments

Comments
 (0)