playwright/tsconfig.json

16 строки
312 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "commonjs",
"lib": ["esnext", "dom"],
"sourceMap": true,
"rootDir": "./src",
"outDir": "./lib",
"strict": true,
"declaration": false
},
"compileOnSave": true,
"include": ["src/**/*.ts"],
"exclude": ["node_modules"]
}