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, {
|
||||
noEmitOnError: true,
|
||||
noImplicitAny: false,
|
||||
target: ScriptTarget.ES2022,
|
||||
module: ModuleKind.CommonJS,
|
||||
moduleResolution: ModuleResolutionKind.Node10,
|
||||
target: ScriptTarget.ESNext,
|
||||
module: ModuleKind.Preserve,
|
||||
moduleResolution: ModuleResolutionKind.NodeNext,
|
||||
sourceMap: true,
|
||||
resolveJsonModule: true,
|
||||
allowJs: true,
|
||||
@ -67,6 +67,7 @@ export class ModCompilerService {
|
||||
downlevelIteration: true,
|
||||
experimentalDecorators: true,
|
||||
emitDecoratorMetadata: true,
|
||||
isolatedModules: true,
|
||||
rootDir: modPath,
|
||||
});
|
||||
}
|
||||
|
@ -17,5 +17,5 @@
|
||||
"@tests/*": ["./tests/*"]
|
||||
}
|
||||
},
|
||||
"include": ["src/*", "src/**/*"]
|
||||
"include": ["src/*", "src/**/*", "./user/mods/**/*"]
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user