mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-25 16:40:03 -05:00
23 lines
450 B
JSON
23 lines
450 B
JSON
{
|
|
"extends": "../ts/tsconfig.json",
|
|
"include": [
|
|
"src/*.ts"
|
|
],
|
|
"exclude": [
|
|
"test"
|
|
],
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"allowJs": false,
|
|
"rootDir": "src",
|
|
"noImplicitAny": true,
|
|
"resolveJsonModule": true,
|
|
"experimentalDecorators": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"importsNotUsedAsValues": "error",
|
|
"types": ["node"],
|
|
"typeRoots": [
|
|
"../../node_modules/@types"
|
|
],
|
|
}
|
|
} |