diff --git a/tsconfig.json b/tsconfig.json index 043a34236..c1773f9b3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,10 +1,18 @@ +// https://www.typescriptlang.org/tsconfig/ { "compilerOptions": { + // Language and Environment "target": "ES2020", + + // Modules "module": "ESNext", "rootDir": ".", "moduleResolution": "node", + + // Emit "sourceMap": true, + + // Type Checking "allowSyntheticDefaultImports": true, "esModuleInterop": true, "experimentalDecorators": true,