You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
744 B
33 lines
744 B
{
|
|
"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,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"strictPropertyInitialization": true,
|
|
"lib": ["es5", "es6", "es2017"],
|
|
"typeRoots": [
|
|
"./typings"
|
|
]
|
|
},
|
|
"include": [
|
|
"./**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|
|
|