Mercurial > code > home > repos > video
view tsconfig.json @ 6:ccfea3625cf6
render thumbs and display them (no video player at all atm)
author | drewp@bigasterisk.com |
---|---|
date | Sun, 09 Apr 2023 18:02:25 -0700 |
parents | 3f2da406c788 |
children | b73941c4dc0a |
line wrap: on
line source
{ "compilerOptions": { "strict": true, "noFallthroughCasesInSwitch": true, "noImplicitAny": true, "noImplicitReturns": true, "noImplicitThis": true, "strictFunctionTypes": true, "strictNullChecks": true, "strictPropertyInitialization": true, "alwaysStrict": true, "types": [], "module": "ES6", "target": "ES6", "moduleResolution": "node", "sourceMap": true, "declaration": true, "experimentalDecorators": true, "allowJs": true, "esModuleInterop": true, "traceResolution": true, // "allowSyntheticDefaultImports": true, // "rootDir": ".", // "outDir": "./build", "baseUrl": ".", // "emitDecoratorMetadata": true, "lib": [ "es6", "dom", "ES2019.Object" ], }, "include": ["src/**/*.ts"] // "exclude": ["src/**/*.test.ts"] }