memiens/tsconfig.json

21 lines
492 B
JSON
Raw Normal View History

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