123456789101112131415161718 |
- {
- "extends": "@tsconfig/node18/tsconfig.json",
- "compilerOptions": {
- "target": "ESNext",
- "module": "commonjs",
- "moduleResolution": "node",
- "composite": true,
- "noEmit": true,
- "rootDir": "../",
- "lib": ["ESNext", "dom"],
- "types": ["nightwatch"]
- },
- "include": ["../node_modules/@nightwatch/**/*", "../src/components/**/*", "../tests/e2e/**/*"],
- "ts-node": {
- "transpileOnly": true
- },
- "files": ["nightwatch.d.ts"]
- }
|