diff options
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/tsconfig.json b/tsconfig.json index 8e22c55..3267caa 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,11 +2,13 @@ "compilerOptions": { "moduleResolution": "node", "pretty": false, - "target": "ESNext", - "module": "ESNext", + "target": "esnext", + "module": "commonjs", "inlineSources": true, "inlineSourceMap": true, - "allowSyntheticDefaultImports": true + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "rootDir": "." }, "exclude": [ "node_modules" ], "files": [ |