CommunitySolidServer/test/tsconfig.json
Joachim Van Herwegen edbf895505 chore: Update to TypeScript 5.2.2
tsconfig has to be different for tests due to cjs/esm issues with jest.
Deploy scripts need to use the original tsconfig though,
which is why we have the current nested tsconfigs.
2023-11-02 10:51:29 +01:00

11 lines
147 B
JSON

{
"extends": "../tsconfig.json",
"compilerOptions": {
"module": "es2022",
"moduleResolution": "node"
},
"include": [
"."
]
}