Files
cypress/system-tests/tsconfig.json

19 lines
366 B
JSON

{
"extends": "../packages/ts/tsconfig.json",
"include": [
"test",
"lib",
],
"files": [
"../packages/ts/index.d.ts",
"./globals.d.ts"
],
"compilerOptions": {
"noEmit": true,
"lib": ["esnext"],
"skipLibCheck": true,
"noImplicitReturns": false,
"strictNullChecks": false,
"typeRoots": ["../node_modules/@types"]
}
}