mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-13 09:50:43 -05:00
Merge branch '4.0.0-DEV' of https://github.com/sp-tarkov/server into 4.0.0-DEV
This commit is contained in:
commit
96c56b34ca
@ -57,9 +57,9 @@ export class ModCompilerService {
|
|||||||
return this.compile(modTypeScriptFiles, {
|
return this.compile(modTypeScriptFiles, {
|
||||||
noEmitOnError: true,
|
noEmitOnError: true,
|
||||||
noImplicitAny: false,
|
noImplicitAny: false,
|
||||||
target: ScriptTarget.ES2022,
|
target: ScriptTarget.ESNext,
|
||||||
module: ModuleKind.CommonJS,
|
module: ModuleKind.Preserve,
|
||||||
moduleResolution: ModuleResolutionKind.Node10,
|
moduleResolution: ModuleResolutionKind.NodeNext,
|
||||||
sourceMap: true,
|
sourceMap: true,
|
||||||
resolveJsonModule: true,
|
resolveJsonModule: true,
|
||||||
allowJs: true,
|
allowJs: true,
|
||||||
@ -67,6 +67,7 @@ export class ModCompilerService {
|
|||||||
downlevelIteration: true,
|
downlevelIteration: true,
|
||||||
experimentalDecorators: true,
|
experimentalDecorators: true,
|
||||||
emitDecoratorMetadata: true,
|
emitDecoratorMetadata: true,
|
||||||
|
isolatedModules: true,
|
||||||
rootDir: modPath,
|
rootDir: modPath,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -17,5 +17,5 @@
|
|||||||
"@tests/*": ["./tests/*"]
|
"@tests/*": ["./tests/*"]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"include": ["src/*", "src/**/*"]
|
"include": ["src/*", "src/**/*", "./user/mods/**/*"]
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user