aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tsconfig.json9
1 files changed, 4 insertions, 5 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 0133563..3d26e21 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,17 +1,16 @@
{
"compilerOptions": {
- "target": "es5",
- "module": "commonjs",
+ "target": "ES2015",
+ "module": "ES2015",
"moduleResolution": "node",
"noImplicitAny": true,
"removeComments": false,
"sourceMap": true,
"declaration": true,
- "newLine": "LF",
"noEmitOnError": true,
"rootDir": "src",
- "outDir": "dist",
- "lib": ["es2015"],
+ "outDir": "dist/esm",
+ "lib": ["es2015"]
},
"include": ["src/**/*.ts"],
"exclude": ["src/**/*.spec.ts"]