playwright/tsconfig.json

16 lines
308 B
JSON
Raw Normal View History

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