diff --git a/tsconfig.json b/tsconfig.json index 9b200d6..1468b6b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,7 +5,6 @@ "module": "ESNext", "lib": ["ES2020"], "skipLibCheck": true, - "allowJs": true, /* Bundler mode */ "moduleResolution": "bundler", @@ -28,5 +27,5 @@ /* Types */ "types": ["node", "vitest/globals"], }, - "include": ["src", "./**/*.ts", "./*.config.*"] + "include": ["src"] } diff --git a/tsconfig.root.json b/tsconfig.root.json new file mode 100644 index 0000000..6a50fe4 --- /dev/null +++ b/tsconfig.root.json @@ -0,0 +1,8 @@ +{ + "extends":"./tsconfig.json", + "include": ["./**/*.ts", "./**/*.config.*"], + "exclude": ["src", "dist", "node_modules"], + "compilerOptions": { + "allowJs": true + } +}