tsconfig.json
1 { 2 "compilerOptions": { 3 "target": "esnext", 4 "module": "commonjs", 5 "noEmit": true, 6 "pretty": true, 7 "strict": true, 8 "alwaysStrict": true, 9 "strictNullChecks": true, 10 "strictFunctionTypes": true, 11 "strictBindCallApply": true, 12 "strictPropertyInitialization": true, 13 "noImplicitAny": true, 14 "noImplicitThis": true, 15 "noImplicitReturns": true, 16 "declaration": true, 17 "sourceMap": true, 18 "declarationMap": true, 19 "esModuleInterop": true 20 } 21 }