tsconfig.json
1 { 2 "compilerOptions": { 3 "target": "es2020", 4 "module": "commonjs", 5 "declaration": true, 6 "outDir": "./dist", 7 "strict": true, 8 "esModuleInterop": true, 9 "skipLibCheck": true, 10 "forceConsistentCasingInFileNames": true, 11 "experimentalDecorators": true, 12 "emitDecoratorMetadata": true 13 } 14 }