diff --git a/tsconfig.cjs.json b/tsconfig.cjs.json index cc172c4..ed6743e 100644 --- a/tsconfig.cjs.json +++ b/tsconfig.cjs.json @@ -1,10 +1,11 @@ { "extends": "./tsconfig.json", + "include": ["./src/**/*.ts"], "compilerOptions": { + "module": "CommonJs", + "moduleResolution": "node", "outDir": "./dist/cjs", "rootDir": "./src", - "target": "esnext", - "module": "CommonJs", - "moduleResolution": "node" + "target": "esnext" } }