| 123456789101112131415161718192021222324252627282930 |
- {
- "compileOnSave": false,
- "compilerOptions": {
- "baseUrl": "./",
- "importHelpers": true,
- "outDir": "./dist/out-tsc",
- "sourceMap": true,
- "declaration": false,
- "moduleResolution": "node",
- "emitDecoratorMetadata": true,
- "experimentalDecorators": true,
- "strict": true,
- "noImplicitAny": false,
- "strictPropertyInitialization": false,
- "target": "es5",
- "skipLibCheck": true,
- "typeRoots": [
- "node_modules/@types",
- "./typings"
- ],
- "lib": [
- "es2017",
- "dom",
- "esnext.asynciterable"
- ],
- "paths": {
- "shared/*": ["../packages/common/lib/*"]
- }
- }
- }
|