github.com/apache/beam/sdks/v2@v2.48.2/typescript/tsconfig.json (about) 1 { 2 "compilerOptions": { 3 "module": "commonjs", 4 "esModuleInterop": true, 5 "allowSyntheticDefaultImports": true, 6 "target": "es2021", 7 "strictNullChecks": true, 8 "moduleResolution": "node", 9 "plugins": [ 10 { 11 "transform": "ts-closure-transform", 12 "import": "beforeTransform" 13 }, 14 { 15 "transform": "ts-closure-transform", 16 "import": "afterTransform", 17 "after": true 18 } 19 ], 20 "sourceMap": true, 21 "outDir": "dist/", 22 "baseUrl": ".", 23 "paths": { 24 "*": ["node_modules/*", "src/types/*"] 25 } 26 }, 27 "include": ["src/**/*", "test/**/*"] 28 }