You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tsconfig.json 727B

12345678910111213141516171819202122232425262728
  1. {
  2. "compilerOptions": {
  3. "strictPropertyInitialization": false,
  4. "noImplicitAny": false,
  5. "target": "esNext",
  6. "declaration": true,
  7. "module": "commonjs",
  8. "moduleResolution": "node",
  9. "strict": true,
  10. "experimentalDecorators": true,
  11. "emitDecoratorMetadata": true,
  12. "outDir": "./lib",
  13. //"types": ["node"],
  14. "strictNullChecks": false
  15. },
  16. "include": ["src/backend/**/*"],
  17. "exclude": [
  18. "./src/frontend/**/*",
  19. "./node_modules/**/*",
  20. "./src/frontend/node_modules/**/*",
  21. "./test",
  22. ],
  23. "angularCompilerOptions": {
  24. "enableIvy": false,
  25. "entryModule": "./src/backend/Admin/app.server.module#AppServerModule"
  26. }
  27. }