UNPKG

ember-cli-page-object

Version:

This ember-cli addon eases the construction of page objects on your acceptance and integration tests

57 lines (56 loc) 1.24 kB
{ "compilerOptions": { "target": "es2017", "allowJs": true, "moduleResolution": "node", "allowSyntheticDefaultImports": true, "noImplicitAny": true, "noImplicitThis": true, "alwaysStrict": true, "strictNullChecks": true, "strictPropertyInitialization": true, "noFallthroughCasesInSwitch": true, "noUnusedLocals": true, "noUnusedParameters": true, "noImplicitReturns": true, "noEmitOnError": true, "noEmit": true, "inlineSourceMap": true, "inlineSources": true, "baseUrl": ".", "module": "es6", "experimentalDecorators": true, "paths": { "dummy/tests/*": [ "tests/*" ], "dummy/*": [ "tests/dummy/app/*", "app/*" ], "ember-cli-page-object": [ "addon" ], "ember-cli-page-object/*": [ "addon/*" ], "ember-cli-page-object/test-support": [ "addon-test-support" ], "ember-cli-page-object/test-support/*": [ "addon-test-support/*" ], "*": [ "types/*" ] } }, "include": [ "app/**/*", "addon/**/*", "tests/**/*", "types/**/*", "test-support/**/*", "addon-test-support/**/*" ] }