2017-11-19 13:51:59 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"experimentalDecorators": true,
|
2018-02-17 22:27:15 +03:00
|
|
|
"module": "commonjs",
|
2017-11-19 13:51:59 +03:00
|
|
|
"moduleResolution": "node",
|
2018-02-17 22:27:15 +03:00
|
|
|
"target": "es2015",
|
2017-11-19 13:51:59 +03:00
|
|
|
"noImplicitAny": false,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"pretty": true,
|
|
|
|
"lib": [
|
|
|
|
"es2015",
|
|
|
|
"es2016",
|
|
|
|
"es2017",
|
|
|
|
"dom"
|
|
|
|
],
|
|
|
|
"jsx": "react",
|
2018-01-29 15:32:57 +03:00
|
|
|
"types": ["cypress"]
|
2017-11-19 13:51:59 +03:00
|
|
|
},
|
|
|
|
"compileOnSave": false,
|
|
|
|
"include": [
|
2018-02-17 22:27:15 +03:00
|
|
|
"integration/*.ts",
|
|
|
|
"../node_modules/cypress"
|
2017-11-19 13:51:59 +03:00
|
|
|
]
|
|
|
|
}
|