mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-02 10:34:27 +03:00
18 lines
509 B
JSON
18 lines
509 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2019",
|
|
"module": "commonjs",
|
|
"lib": ["esnext", "dom", "DOM.Iterable"],
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"allowJs": true,
|
|
"jsx": "react",
|
|
"resolveJsonModule": true,
|
|
"noEmit": true,
|
|
"noImplicitOverride": true,
|
|
},
|
|
"compileOnSave": true,
|
|
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.js", "src/server/deviceDescriptorsSource.json"],
|
|
"exclude": ["node_modules", "src/.eslintrc.js", "src/**/*webpack.config.js"]
|
|
}
|