diff --git a/tsconfig.json b/tsconfig.json index d7d58ee..1ff6193 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,13 +1,10 @@ { "compilerOptions": { + "rootDir": "./src/", "target": "ESNext", "module": "ESNext", - "moduleResolution": "Bundler", - "strict": true, - "declaration": true, - "outDir": "./dist/" - }, - "include": [ - "./src/" - ] + "moduleResolution": "bundler", + "outDir": "./dist/", + "declaration": true + } }