1{ 2 "compilerOptions": { 3 "lib": [ 4 "dom", 5 "dom.iterable", 6 "esnext" 7 ], 8 "outDir": "dist", 9 "baseUrl": ".", 10 "esModuleInterop": true, 11 "target": "es6", 12 "declarationDir": "./types", 13 "moduleResolution": "node", 14 "declaration": true, 15 "allowJs": true, 16 "paths": { 17 "pigweedjs/pw_*": [ 18 "./pw_*/ts" 19 ], 20 "pigweedjs/protos/*": [ 21 "./dist/protos/*" 22 ], 23 "pigweedjs/types/*": [ 24 "./ts/types/*" 25 ] 26 } 27 }, 28 "include": [ 29 "ts", 30 "pw_status/ts", 31 "pw_hdlc/ts", 32 "pw_tokenizer/ts", 33 "pw_protobuf_compiler/ts", 34 "pw_rpc/ts", 35 "pw_rpc/internal", 36 "dist/protos/**/*" 37 ] 38} 39