Files
directus/tests/tsconfig.json
2021-04-16 16:53:28 -04:00

29 lines
721 B
JSON

{
"compilerOptions": {
"target": "ES2018",
"lib": ["ES2018"],
"module": "CommonJS",
"moduleResolution": "node",
"declaration": true,
"declarationMap": true,
"strict": true,
"noFallthroughCasesInSwitch": true,
"esModuleInterop": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUncheckedIndexedAccess": true,
"noUnusedParameters": true,
"alwaysStrict": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"resolveJsonModule": false,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true
}
}