diff --git a/pkg/admin/tsconfig.json b/pkg/admin/tsconfig.json index ff968c61e..5be73deec 100644 --- a/pkg/admin/tsconfig.json +++ b/pkg/admin/tsconfig.json @@ -1,12 +1,19 @@ { - "extends": "../../tsconfig.json", "ts-node": { "files": true }, "compilerOptions": { "outDir": "dist", "experimentalDecorators": true, - "lib": ["dom"] + "lib": ["dom", "es2020"], + "module": "commonjs", + "target": "es2020", + + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "moduleResolution": "node" }, "include": ["src", "test"], "exclude": ["./src/generated"]