mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
chore: Use tsconfig base. (#433)
This commit is contained in:
@@ -200,7 +200,8 @@ export const instantiateFromConfig = async(componentUrl: string, configFile: str
|
||||
* Initializes the root container of the server.
|
||||
* Useful for when the RootContainerInitializer was not instantiated.
|
||||
*/
|
||||
export const initServerStore = async(server: Server, baseUrl: string, headers: HeadersInit = {}): Promise<void> => {
|
||||
export const initServerStore = async(server: Server, baseUrl: string,
|
||||
headers: Record<string, string> = {}): Promise<void> => {
|
||||
const res = await fetch(baseUrl, {
|
||||
method: 'PUT',
|
||||
headers: {
|
||||
|
||||
@@ -1,10 +1,6 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"module": "commonjs",
|
||||
"target": "es2017",
|
||||
"esModuleInterop": true,
|
||||
"incremental": true,
|
||||
"noUnusedLocals": true,
|
||||
"strict": true
|
||||
}
|
||||
"extends": "../tsconfig.json",
|
||||
"include": [
|
||||
"."
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user