Skip to content

Commit 76d420c

Browse files
committed
fix tsconfig.json
1 parent 45a4e16 commit 76d420c

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@
77
"out": true // set this to false to include "out" folder in search results
88
},
99
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
10-
"typescript.tsc.autoDetect": "off"
10+
"typescript.tsc.autoDetect": "off",
11+
"git.ignoreLimitWarning": true
1112
}

package-lock.json

Lines changed: 0 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tsconfig.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,26 @@
22
"compilerOptions": {
33
"module": "commonjs",
44
"target": "es6",
5-
"outDir": "out",
5+
"outDir": "./out",
66
"lib": [
77
"es6"
88
],
99
"sourceMap": true,
1010
"esModuleInterop": true,
11-
"rootDir":"src",
11+
"skipLibCheck": true,
12+
"rootDir":"./src",
1213
"strict": true, /* enable all strict type-checking options */
1314
/* Additional Checks */
1415
"noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
1516
"noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
1617
"noUnusedParameters": true /* Report errors on unused parameters. */
1718
},
19+
"include": [
20+
"src"
21+
],
1822
"exclude": [
19-
"node_modules"
23+
"node_modules",
24+
"vscode-test",
25+
"test"
2026
]
2127
}

0 commit comments

Comments
 (0)