TypeScript Crash Course in 45 minutes

Поделиться
HTML-код
  • Опубликовано: 1 дек 2024

Комментарии • 5

  • @calebowatah5775
    @calebowatah5775 Год назад +1

    Awesome tutorial

  • @kvelez
    @kvelez 2 месяца назад

    tsconfig.json:
    {
    "compilerOptions": {
    "target": "ESNext",
    "module": "commonjs",
    "strict": true,
    "esModuleInterop": true,
    "forceConsistentCasingInFileNames": true,
    "rootDir": "./src",
    "outDir": "./dist",
    "resolveJsonModule": true,
    "allowSyntheticDefaultImports": true
    },
    "include": [
    "src/**/*.ts" // Specify the path to your TypeScript source files
    ],
    "exclude": [
    "node_modules" // Exclude the node_modules folder from compilation
    ]
    }

  • @manuelsanchezweb
    @manuelsanchezweb Год назад

    Hi, cool video! By the way, what software are u using to create those presentations? They are amazing!