From 17ae81f04074ad5b2fdbb21f221e33e69b425e53 Mon Sep 17 00:00:00 2001
From: jsteuer <jan.steuer.htw@gmail.com>
Date: Wed, 05 Feb 2020 11:36:17 +0100
Subject: [PATCH] better docs, ide-tool-utils as ts, es6 and es5
---
tsconfig.json | 30 +++++++++++++++++++++++-------
1 files changed, 23 insertions(+), 7 deletions(-)
diff --git a/tsconfig.json b/tsconfig.json
index e6495e2..aa62505 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,13 +1,29 @@
{
"compilerOptions": {
+ "target": "es6",
"module": "commonjs",
- "target": "es5",
- "declaration": true,
- "outDir": "./dist",
+ "moduleResolution": "node",
+ "sourceMap": true,
"lib": [
- "DOM",
- "ES2016"
+ "es2016",
+ "dom"
],
- "strict": true
- }
+ "rootDir": ".",
+ "outDir": "dist",
+ "baseUrl": ".",
+ "paths": {
+ "@mathcoach-ide-api": [
+ "src"
+ ],
+ },
+ "strict": true,
+ "noImplicitReturns": true,
+ "noImplicitThis": true,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true
+ },
+ "include": [
+ "src",
+ "test"
+ ]
}
\ No newline at end of file
--
Gitblit v1.10.0