mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-25 08:29:06 -06:00
27 lines
550 B
JSON
27 lines
550 B
JSON
{
|
|
"compilerOptions": {
|
|
"experimentalDecorators": true,
|
|
"target": "es2020",
|
|
"module": "es2020",
|
|
"skipLibCheck": true,
|
|
"lib": [
|
|
"ESNext",
|
|
"DOM"
|
|
],
|
|
"allowJs": true,
|
|
"declaration": true,
|
|
"outDir": "dist",
|
|
"strict": true,
|
|
"baseUrl": "./",
|
|
"types": [
|
|
"cypress"
|
|
],
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node",
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
},
|
|
"include": ["src/**/*.*"],
|
|
"exclude": ["src/**/*-spec.*"]
|
|
}
|