tsconfig.json 459 B

123456789101112131415161718
  1. {
  2. "extends": "@tsconfig/node18/tsconfig.json",
  3. "compilerOptions": {
  4. "target": "ESNext",
  5. "module": "commonjs",
  6. "moduleResolution": "node",
  7. "composite": true,
  8. "noEmit": true,
  9. "rootDir": "../",
  10. "lib": ["ESNext", "dom"],
  11. "types": ["nightwatch"]
  12. },
  13. "include": ["../node_modules/@nightwatch/**/*", "../src/components/**/*", "../tests/e2e/**/*"],
  14. "ts-node": {
  15. "transpileOnly": true
  16. },
  17. "files": ["nightwatch.d.ts"]
  18. }