2018-05-13 23:32:01 -04:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2018-05-14 01:30:56 -04:00
|
|
|
"allowJs": true,
|
2018-05-13 23:32:01 -04:00
|
|
|
"module": "commonjs",
|
|
|
|
"noImplicitAny": true,
|
2018-05-21 17:33:33 -04:00
|
|
|
"baseUrl": ".",
|
2018-05-13 23:32:01 -04:00
|
|
|
"removeComments": true,
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"declaration": true,
|
2018-05-14 02:50:55 -04:00
|
|
|
"target": "es2017",
|
2018-05-18 20:39:20 -04:00
|
|
|
"lib": ["es2017", "DOM"],
|
2018-05-13 23:32:01 -04:00
|
|
|
"noEmit": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"alwaysStrict": true,
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
"pretty": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"allowUnreachableCode": false,
|
|
|
|
"experimentalDecorators": true
|
|
|
|
},
|
2018-05-28 11:16:38 -04:00
|
|
|
"include": ["*.ts", "*.js"],
|
|
|
|
"exclude": ["tests.ts"]
|
2018-05-13 23:32:01 -04:00
|
|
|
}
|