2017-02-06 13:40:28 -05:00
{
"compilerOptions" : {
2017-09-23 08:24:04 -04:00
/ * B a s i c O p t i o n s * /
"target" : "es5" , / * S p e c i f y E C M A S c r i p t t a r g e t v e r s i o n : ' E S 3 ' ( d e f a u l t ) , ' E S 5 ' , ' E S 2015 ' , ' E S 2016 ' , ' E S 2017 ' , o r ' E S N E X T ' . * /
"module" : "commonjs" , / * S p e c i f y m o d u l e c o d e g e n e r a t i o n : ' n o n e ' , c o m m o n j s ' , ' a m d ' , ' s y s t e m ' , ' u m d ' , ' e s 2015 ' , o r ' E S N e x t ' . * /
2017-02-06 13:40:28 -05:00
"lib" : [
2017-09-23 08:24:04 -04:00
"es2015" ,
"es2016.array.include"
] , / * S p e c i f y l i b r a r y f i l e s t o b e i n c l u d e d i n t h e c o m p i l a t i o n : * /
// "allowJs": true, /* Allow javascript files to be compiled. */
// "checkJs": true, /* Report errors in .js files. */
// "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
// "declaration": true, /* Generates corresponding '.d.ts' file. */
// "sourceMap": true, /* Generates corresponding '.map' file. */
// "outFile": "./", /* Concatenate and emit output to single file. */
"outDir" : "dist" , / * R e d i r e c t o u t p u t s t r u c t u r e t o t h e d i r e c t o r y . * /
// "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
// "removeComments": true, /* Do not emit comments to output. */
// "noEmit": true, /* Do not emit outputs. */
"importHelpers" : true , / * I m p o r t e m i t h e l p e r s f r o m ' t s l i b ' . * /
// "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
// "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
/ * S t r i c t T y p e - C h e c k i n g O p t i o n s * /
"strict" : true , / * E n a b l e a l l s t r i c t t y p e - c h e c k i n g o p t i o n s . * /
// "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
// "strictNullChecks": true, /* Enable strict null checks. */
// "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */
// "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */
/ * A d d i t i o n a l C h e c k s * /
"noUnusedLocals" : true , / * R e p o r t e r r o r s o n u n u s e d l o c a l s . * /
"noUnusedParameters" : true , / * R e p o r t e r r o r s o n u n u s e d p a r a m e t e r s . * /
"noImplicitReturns" : true , / * R e p o r t e r r o r w h e n n o t a l l c o d e p a t h s i n f u n c t i o n r e t u r n a v a l u e . * /
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
/ * M o d u l e R e s o l u t i o n O p t i o n s * /
// "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
// "baseUrl": "./", /* Base directory to resolve non-absolute module names. */
// "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
// "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
2017-02-06 13:40:28 -05:00
"typeRoots" : [
"node_modules/@types"
2017-09-23 08:24:04 -04:00
] , / * L i s t o f f o l d e r s t o i n c l u d e t y p e d e f i n i t i o n s f r o m . * /
// "types": [], /* Type declaration files to be included in compilation. */
// "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
// "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */
/ * S o u r c e M a p O p t i o n s * /
// "sourceRoot": "./", /* Specify the location where debugger should locate TypeScript files instead of source locations. */
// "mapRoot": "./", /* Specify the location where debugger should locate map files instead of generated locations. */
"inlineSourceMap" : true , / * E m i t a s i n g l e f i l e w i t h s o u r c e m a p s i n s t e a d o f h a v i n g a s e p a r a t e f i l e . * /
// "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */
/ * E x p e r i m e n t a l O p t i o n s * /
// "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
/ * O t h e r * /
"forceConsistentCasingInFileNames" : true , / * D i s a l l o w i n c o n s i s t e n t l y - c a s e d r e f e r e n c e s t o t h e s a m e f i l e . * /
"newLine" : "LF" , / * U s e t h e s p e c i f i e d e n d o f l i n e s e q u e n c e t o b e u s e d w h e n e m i t t i n g f i l e s : "crlf" ( w i n d o w s ) o r "lf" ( u n i x ) . * /
"pretty" : true , / * S t y l i z e e r r o r s a n d m e s s a g e s u s i n g c o l o r a n d c o n t e x t . * /
"skipLibCheck" : true / * S k i p t y p e c h e c k i n g o f a l l d e c l a r a t i o n f i l e s ( * . d . t s ) . * /
2017-02-06 13:40:28 -05:00
} ,
"include" : [
"lib/**/*" ,
"test/**/*"
]
}