diff --git a/tsconfig.json b/tsconfig.json index ac68ef6..98deec1 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,21 +1,15 @@ { "compilerOptions": { - "target": "ES2022", - "module": "esnext", - "moduleResolution": "bundler", - "forceConsistentCasingInFileNames": false, - "inlineSourceMap": true, - "outDir": "./dist", - "rootDir": "./src", - "noImplicitAny": false, - "noUnusedLocals": true, - "esModuleInterop": true, "strict": true, + "noUnusedLocals": true, + "noImplicitAny": false, + + "moduleResolution": "bundler", + "esModuleInterop": true, + + "lib": ["ES2021.String"], "skipLibCheck": true, - "lib": [ - "ES2021.String" - ] + "inlineSourceMap": true, + "forceConsistentCasingInFileNames": false }, - "include": ["src"], - "exclude": ["node_modules"] } \ No newline at end of file