mirror of
https://github.com/fluencelabs/aqua-playground
synced 2025-03-15 18:41:00 +00:00
* Use env variable to set where to run tests * Bump aqua version * Add periodic healtcheck * Report to slack on failure * Retry tests 3 times
28 lines
471 B
JSON
28 lines
471 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es2017",
|
|
"es7",
|
|
"es6",
|
|
"dom"
|
|
],
|
|
"declaration": true,
|
|
"outDir": "dist",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": false,
|
|
"strictNullChecks": false
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"bundle",
|
|
"src/__test__"
|
|
],
|
|
"include": ["src/**/*"]
|
|
}
|