(FRONT) FRONT (2024)

<< return Angular Options

Tsc compiler for Angular options example:


   1:  {
   2:    "compileOnSave": false,
   3:    "compilerOptions": {
   4:      "outFile": "./src/main.js",
   5:      "outDir": "./dist/out-tsc",
   6:      "strict": true,
   7:      "noImplicitOverride": true,
   8:      "noPropertyAccessFromIndexSignature": true,
   9:      "noImplicitReturns": true,
  10:      "noFallthroughCasesInSwitch": true,
  11:      "skipLibCheck": true,
  12:      "esModuleInterop": true,
  13:      "sourceMap": true,
  14:      "declaration": false,
  15:      "experimentalDecorators": true,
  16:      "moduleResolution": "bundler",
  17:      "importHelpers": true,
  18:      "target": "ES2022",
  19:      "module": "ES2022",
  20:      "useDefineForClassFields": false,
  21:      "lib": [
  22:        "ES2022",
  23:        "dom"
  24:      ]
  25:    },
  26:    "angularCompilerOptions": {
  27:      "enableI18nLegacyMessageIdFormat": false,
  28:      "strictInjectionParameters": true,
  29:      "strictInputAccessModifiers": true,
  30:      "strictTemplates": true
  31:    }
  32:  }











Comments ( )
Link to this page: http://www.vb-net.com/AngularElectron/AngularOptions.htm
< THANKS ME>