diff --git a/tsconfig.json b/tsconfig.json index 4f49016..783e3fc 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,17 +1,15 @@ { "compilerOptions": { - "alwaysStrict": true, "declaration": true, "forceConsistentCasingInFileNames": true, "downlevelIteration": true, + "lib": ["dom", "es2017"], "module": "esnext", "moduleResolution": "node", - "lib": ["dom", "es2017"], - "outDir": "./out/esm", + "noEmit": true, "skipLibCheck": true, "sourceMap": true, "target": "es6", "types": [] - }, - "exclude": ["node_modules", "out", "lib", "test"] + } }