|
@@ -2,27 +2,28 @@
|
|
|
"compileOnSave": false,
|
|
"compileOnSave": false,
|
|
|
"compilerOptions": {
|
|
"compilerOptions": {
|
|
|
"baseUrl": ".",
|
|
"baseUrl": ".",
|
|
|
|
|
+ "rootDir": ".",
|
|
|
"outDir": "./dist",
|
|
"outDir": "./dist",
|
|
|
"module": "commonjs",
|
|
"module": "commonjs",
|
|
|
|
|
+ "target": "ES2019",
|
|
|
|
|
+ "moduleResolution": "node",
|
|
|
"declaration": true,
|
|
"declaration": true,
|
|
|
"removeComments": true,
|
|
"removeComments": true,
|
|
|
"emitDecoratorMetadata": true,
|
|
"emitDecoratorMetadata": true,
|
|
|
"experimentalDecorators": true,
|
|
"experimentalDecorators": true,
|
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
|
- "target": "ES2019",
|
|
|
|
|
|
|
+ "esModuleInterop": true,
|
|
|
|
|
+ "resolveJsonModule": true,
|
|
|
"sourceMap": true,
|
|
"sourceMap": true,
|
|
|
"incremental": true,
|
|
"incremental": true,
|
|
|
"skipLibCheck": true,
|
|
"skipLibCheck": true,
|
|
|
|
|
+ "strict": true,
|
|
|
"strictNullChecks": false,
|
|
"strictNullChecks": false,
|
|
|
"noImplicitAny": false,
|
|
"noImplicitAny": false,
|
|
|
- "strict": true,
|
|
|
|
|
"strictBindCallApply": false,
|
|
"strictBindCallApply": false,
|
|
|
- "forceConsistentCasingInFileNames": false,
|
|
|
|
|
|
|
+ "strictPropertyInitialization": false,
|
|
|
|
|
+ "forceConsistentCasingInFileNames": true,
|
|
|
"noFallthroughCasesInSwitch": false,
|
|
"noFallthroughCasesInSwitch": false,
|
|
|
- "strictPropertyInitialization": false, // 👈 add this line
|
|
|
|
|
- "moduleResolution": "node",
|
|
|
|
|
- "esModuleInterop": true,
|
|
|
|
|
- "resolveJsonModule": true,
|
|
|
|
|
"types": ["node"],
|
|
"types": ["node"],
|
|
|
"paths": {
|
|
"paths": {
|
|
|
"@box/common/*": ["libs/common/src/*"],
|
|
"@box/common/*": ["libs/common/src/*"],
|