fix(compilerOptions): Remove experimentalDecorators and useDefineForClassFields from default TypeScript compiler options
This commit is contained in:
@@ -19,7 +19,6 @@ export interface IErrorSummary {
|
||||
export const compilerOptionsDefault: CompilerOptions = {
|
||||
declaration: true,
|
||||
emitDecoratorMetadata: true,
|
||||
experimentalDecorators: true,
|
||||
inlineSourceMap: true,
|
||||
noEmitOnError: true,
|
||||
outDir: 'dist_ts/',
|
||||
@@ -29,7 +28,6 @@ export const compilerOptionsDefault: CompilerOptions = {
|
||||
lib: ['lib.dom.d.ts', 'lib.es2022.d.ts'],
|
||||
noImplicitAny: false, // Allow implicit any by default
|
||||
esModuleInterop: true,
|
||||
useDefineForClassFields: false,
|
||||
verbatimModuleSyntax: true,
|
||||
baseUrl: './',
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user