@atomicsmash/coding-standards
Version:
A collection of coding standards configurations.
18 lines (17 loc) • 416 B
JSON
{
"$schema": "http://json.schemastore.org/tsconfig",
"exclude": [
"../node_modules/@types/jest",
"../node_modules/@testing-library/jest-dom"
],
"include": [
"e2e/**/*",
"support/**/*",
"../node_modules/cypress",
"../node_modules/@testing-library/cypress"
],
"compilerOptions": {
"types": ["node", "cypress", "@testing-library/cypress"],
"typeRoots": ["../types", "../node_modules/@types"]
}
}