| 1234567891011121314151617181920212223242526272829303132 |
- {
- "compilerOptions": {
- "strictNullChecks": true,
- "noImplicitAny": true,
- "module": "CommonJS",
- "target": "ES5",
- "allowJs": false,
- "experimentalDecorators": true,
- "noImplicitThis": true,
- "noImplicitReturns": true,
- "alwaysStrict": true,
- "inlineSourceMap": true,
- "inlineSources": true,
- "noFallthroughCasesInSwitch": true,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "strict": true,
- "removeComments": true,
- "pretty": true,
- "strictPropertyInitialization": true,
- "lib": ["es6", "ES2015", "ES2015.Promise", "ES2016", "ES2016.Array.Include"],
- "typeRoots": [
- "./typings"
- ]
- },
- "include": [
- "./**/*.ts"
- ],
- "exclude": [
- "node_modules"
- ]
- }
|