mirror of
https://github.com/microsoft/playwright.git
synced 2024-11-10 12:57:42 +03:00
825555cddf
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
16 lines
312 B
JSON
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"]
|
|
}
|