Files
cypress/system-tests/tsconfig.json
T
2022-03-03 15:39:34 +00:00

23 lines
385 B
JSON

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