summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json38
1 files changed, 18 insertions, 20 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 52a5272..98cfd55 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,22 +1,20 @@
{
- "compilerOptions": {
- "module": "commonjs",
- "target": "es6",
- "outDir": "out",
- "lib": [
- "es6"
- ],
- "sourceMap": true,
- "rootDir": "lib",
- /* Strict Type-Checking Option */
- // "strict": true, /* enable all strict type-checking options */
- /* Additional Checks */
- "noUnusedLocals": true /* Report errors on unused locals. */
- // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
- // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
- // "noUnusedParameters": true, /* Report errors on unused parameters. */
- },
- "exclude": [
- "node_modules"
- ]
+ "compilerOptions": {
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "noImplicitAny": true,
+ "noImplicitReturns": true,
+ "target": "es6",
+ "module": "commonjs",
+ "moduleResolution": "node",
+ "rootDir": ".",
+ "outDir": "out",
+ "lib": [ "es2016" ],
+ "sourceMap": true
+ },
+ "exclude": [
+ "node_modules",
+ "server",
+ "Scratch.ts"
+ ]
} \ No newline at end of file