github.com/readium/readium-lcp-server@v0.0.0-20240101192032-6e95190e99f1/frontend/manage/tsconfig.json (about) 1 { 2 "compilerOptions": { 3 "target": "es5", 4 "module": "commonjs", 5 "moduleResolution": "node", 6 "sourceMap": true, 7 "emitDecoratorMetadata": true, 8 "experimentalDecorators": true, 9 "lib": [ "es2015", "dom" ], 10 "noImplicitAny": true, 11 "suppressImplicitAnyIndexErrors": true, 12 "ignoreDeprecations": "5.0", 13 "outDir": "dist/app", 14 "typeRoots": [ 15 "node_modules/@types", 16 "./typings" 17 ] 18 }, 19 "include": [ 20 "app/**/*" 21 ], 22 "exclude": [ 23 "node_modules", 24 "**/*.spec.ts" 25 ] 26 }