2017-05-14 18:16:31 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"target": "es6",
|
|
|
|
"allowJs": true,
|
2017-05-14 18:55:42 +03:00
|
|
|
"outDir": "dist",
|
|
|
|
"rootDir": "src",
|
2017-05-14 18:16:31 +03:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": false,
|
2017-05-14 18:55:42 +03:00
|
|
|
"noImplicitAny": false
|
2017-05-14 18:16:31 +03:00
|
|
|
},
|
|
|
|
"exclude": [
|
2017-05-14 18:55:42 +03:00
|
|
|
"node_modules",
|
|
|
|
"dist"
|
2017-05-14 18:16:31 +03:00
|
|
|
],
|
|
|
|
"types": [
|
|
|
|
"node_modules/@types"
|
|
|
|
]
|
|
|
|
}
|