Mercurial > code > home > repos > video
view tsconfig.json @ 0:3f2da406c788
start
author | drewp@bigasterisk.com |
---|---|
date | Tue, 21 Jul 2020 23:28:04 -0700 |
parents | |
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"] }