Advertisement
Guest User

Main tsconfig.json

a guest
Apr 2nd, 2025
11
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.39 KB | Source Code | 0 0
  1. {
  2.   "compileOnSave": false,
  3.   "compilerOptions": {
  4.     "baseUrl": "./",
  5.     "outDir": "./dist/out-tsc",
  6.     "resolveJsonModule": true,
  7.     "incremental": true,
  8.     "esModuleInterop": true,
  9.     "forceConsistentCasingInFileNames": true,
  10.     "strict": false,
  11.     "noImplicitReturns": false,
  12.     "noFallthroughCasesInSwitch": false,
  13.     "strictPropertyInitialization": false,
  14.     "noImplicitAny": false,
  15.     "sourceMap": true,
  16.     "declaration": false,
  17.     "experimentalDecorators": true,
  18.     "moduleResolution": "node",
  19.     "importHelpers": true,
  20.     "target": "ES2022",
  21.     "module": "es2020",
  22.     "typeRoots": ["node", "src/customTypings", "node_modules/@types"],
  23.     "lib": ["es2018", "dom"],
  24.     "types": ["node", "youtube", "gapi", "gapi.auth2"],
  25.     "strictNullChecks": true,
  26.     "paths": {
  27.       "*": ["./*"]
  28.     },
  29.     "useDefineForClassFields": false
  30.   },
  31.   "angularCompilerOptions": {
  32.     "enableI18nLegacyMessageIdFormat": false,
  33.     "strictInjectionParameters": false,
  34.     "strictInputAccessModifiers": false,
  35.     "strictTemplates": true,
  36.     "extendedDiagnostics": {
  37.       "checks": {
  38.         "optionalChainNotNullable": "suppress",
  39.         "interpolatedSignalNotInvoked": "error",
  40.         "uninvokedFunctionInEventBinding": "error"
  41.       },
  42.       "defaultCategory": "error"
  43.     }
  44.   },
  45.   "include": ["src/**/*.ts"],
  46.   "exclude": ["node_modules", "**/*.spec.ts"]
  47. }
  48.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement