playwright/tsconfig.json
2019-12-04 17:58:38 -08:00

17 lines
341 B
JSON

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