playwright/tsconfig.json
Joel Einbinder 825555cddf
types: better types (#1166)
This generates typescript definitions based on the api.md, instead of autogenerating them from the typescript source code.

Now types
 - only include the public api
 - work with older versions of typescript
 - include descriptions
 - are more consistent
 - are more complete

#6
2020-03-20 01:30:35 -07:00

16 lines
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"]
}