{ "extends": "./node_modules/@dzeio/config/tsconfig.base.json", "compilerOptions": { "jsx": "react-jsx", "outDir": "dist", "target": "ES2022", "module": "NodeNext", "skipLibCheck": true, "moduleResolution": "NodeNext", "esModuleInterop": true, "experimentalDecorators": true, "emitDecoratorMetadata": true, "allowJs": true, "pretty": true, "allowSyntheticDefaultImports": true, // Type Checking "forceConsistentCasingInFileNames": true, "alwaysStrict": true, "strict": true, "strictNullChecks": true, "strictFunctionTypes": true, "strictBindCallApply": true, "strictPropertyInitialization": true, "noImplicitAny": true, "noImplicitThis": true, "noUnusedLocals": true, "noUnusedParameters": true, "noImplicitReturns": true, "noFallthroughCasesInSwitch": true }, "include": [ "src" ], "files": [ "main.ts" ], "exclude": [ "node_modules" ] }