view tsconfig.json @ 33:6ee4c73decf4

fix playability of vids with # in their titles
author drewp@bigasterisk.com
date Mon, 26 Aug 2024 22:34:28 -0700
parents 1fa90a903621
children
line wrap: on
line source

{
  "compilerOptions": {
    "allowSyntheticDefaultImports": true,
    "alwaysStrict": true,
    "forceConsistentCasingInFileNames": true,
    "noFallthroughCasesInSwitch": true,
    "noImplicitAny": true,
    "noImplicitReturns": true,
    "noImplicitThis": true,
    "strict": true,
    "strictFunctionTypes": true,
    "strictNullChecks": true,
    "strictPropertyInitialization": true,

    "allowJs": true,
    "declaration": true,
    "downlevelIteration": true,
    "esModuleInterop": true,
    "experimentalDecorators": true,
    "module": "ES6",
    "moduleResolution": "node",
    "sourceMap": true,
    "target": "ES6",
    "traceResolution": true,
    "useDefineForClassFields": false,

    "baseUrl": ".",
    "lib": ["es6", "dom", "ES2019.Object"],
    "types": []
  },
  "include": ["src/**/*.ts"]
}