diff --git a/tsconfig.json b/tsconfig.json index e168023..0c292a8 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,14 +2,16 @@ "compilerOptions": { "target": "es5", "forceConsistentCasingInFileNames": true, - "module": "commonjs", + "module": "esnext", + "moduleResolution": "node", "jsx": "react", "declaration": true, "sourceMap": true, "experimentalDecorators": true, "skipLibCheck": true, "typeRoots": [ - "./node_modules/@types" + "./node_modules/@types", + "./node_modules/@microsoft" ], "types": [ "es6-promise", @@ -20,9 +22,5 @@ "dom", "es2015.collection" ] - }, - "include": [ - "src/**/*.ts" - ] + } } -