diff --git a/tsconfig.json b/tsconfig.json index 4112d46a..8f59911f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,8 +1,9 @@ { - "extends": "./tsconfig.base.json", + "extends": "@tsconfig/docusaurus/tsconfig.json", "compilerOptions": { - "rootDir": "." + "resolveJsonModule": true, + "downlevelIteration": true }, - "include": ["./src/**/*", "./test/**/*", "./scripts/**/*"], - "exclude": ["./test/__fixtures__"] + "include": ["src/"], + "exclude": ["node_modules"] }