DefinitelyTyped/types/detox/tsconfig.json

26 lines
692 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": ["es6"],
"target": "ES2015",
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": ["../"],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"runners/jest/adapter/index.d.ts",
"runners/mocha/adapter/index.d.ts",
"test/detox-global-tests.ts",
"test/detox-module-tests.ts",
"test/detox-jest-setup-tests.ts",
"test/detox-mocha-setup-tests.ts"
]
}