tibi-types/tsconfig.json

19 lines
435 B
JSON
Raw Permalink Normal View History

2021-08-16 10:23:45 +02:00
{
2022-01-13 18:38:02 +01:00
"include": ["demo-api/**/*"],
"compilerOptions": {
"typeRoots": ["."],
"module": "commonjs",
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"checkJs": true
},
"files": ["index.d.ts"]
}