Files
openccb/e2e/tsconfig.json
T

22 lines
524 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "commonjs",
"moduleResolution": "Node",
"ignoreDeprecations": "6.0",
"strict": true,
"noImplicitAny": false,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"lib": [
"ESNext",
"DOM"
]
},
"include": [
"**/*.ts"
]
}