mirror of
https://github.com/cypress-io/cypress.git
synced 2026-03-01 04:19:15 -06:00
20 lines
325 B
JSON
20 lines
325 B
JSON
{
|
|
"extends": "../ts/tsconfig.json",
|
|
"include": [
|
|
"src/*.ts"
|
|
],
|
|
"exclude": [
|
|
"test"
|
|
],
|
|
"compilerOptions": {
|
|
"allowJs": false,
|
|
"rootDir": "src",
|
|
"noImplicitAny": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"types": ["node"],
|
|
"typeRoots": [
|
|
"../../node_modules/@types"
|
|
],
|
|
}
|
|
}
|