memiens/tsconfig.json

21 lines
492 B
JSON
Raw Permalink Normal View History

2019-03-09 18:21:36 +01:00
{
"compilerOptions": {
2020-11-17 21:11:39 +01:00
"target": "es2019",
2019-09-09 12:10:09 +02:00
"module": "commonjs",
"declaration": true,
2020-11-17 21:11:39 +01:00
"outDir": "./dist",
2019-09-09 12:10:09 +02:00
"rootDir": "./src",
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noImplicitReturns": true,
2020-11-17 21:11:39 +01:00
"noFallthroughCasesInSwitch": true,
"esModuleInterop": true
2019-03-09 18:21:36 +01:00
}
}