playwright/tsconfig.json

16 lines
324 B
JSON
Raw Normal View History

2019-11-19 05:18:28 +03:00
{
"compilerOptions": {
"target": "ESNext",
"module": "commonjs",
"lib": ["esnext", "dom"],
"sourceMap": true,
"rootDir": "./src",
2019-12-05 04:58:38 +03:00
"outDir": "./lib",
"strictBindCallApply": true,
"declaration": true
2019-11-19 05:18:28 +03:00
},
"compileOnSave": true,
2019-11-20 20:10:41 +03:00
"include": ["src/**/*.ts"],
2019-11-19 05:18:28 +03:00
"exclude": ["node_modules"]
}