Files
ManyCoqDecks/server/tsconfig.json
T
Gareth Latty 6355b23938 Fix #20.
2020-10-11 17:15:28 +01:00

26 lines
671 B
JSON

{
"include": ["./src/ts/**/*", "./types/**/*"],
"compilerOptions": {
"target": "ES2020",
"module": "ES2020",
"sourceMap": true,
"outDir": "./dist",
"incremental": true,
"removeComments": true,
"resolveJsonModule": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"typeRoots": ["./types"]
}
}