mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00

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.
11 lines
147 B
JSON
11 lines
147 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "es2022",
|
|
"moduleResolution": "node"
|
|
},
|
|
"include": [
|
|
"."
|
|
]
|
|
}
|