mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-12 11:50:22 +03:00
6102052832
I like my tests showing TS source lines more!
16 lines
328 B
JSON
16 lines
328 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "commonjs",
|
|
"lib": ["esnext", "dom", "DOM.Iterable"],
|
|
"sourceMap": true,
|
|
"rootDir": "./src",
|
|
"outDir": "./lib",
|
|
"strict": true,
|
|
"declaration": false
|
|
},
|
|
"compileOnSave": true,
|
|
"include": ["src/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|