Mercurial > code > home > repos > video
view tsconfig.json @ 27:27a754f8e8f8
deployment fixes
author | drewp@bigasterisk.com |
---|---|
date | Sat, 14 Oct 2023 17:08:36 -0700 |
parents | b73941c4dc0a |
children | 1fa90a903621 |
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"] // "exclude": ["src/**/*.test.ts"] }