2016-01-19 19:34:04 +03:00
|
|
|
{
|
2018-11-05 09:56:31 +03:00
|
|
|
"compilerOptions": {
|
|
|
|
"alwaysStrict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"strictPropertyInitialization": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"declaration": true,
|
|
|
|
"jsx": "react",
|
|
|
|
"lib": ["es6", "dom", "scripthost"],
|
|
|
|
"module": "commonjs",
|
|
|
|
"outDir": "dist/src",
|
|
|
|
"removeComments": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"target": "es5"
|
|
|
|
},
|
|
|
|
"include": ["src"]
|
|
|
|
}
|