| 1234567891011121314151617181920212223242526272829 |
- {
- "compileOnSave": false,
- "compilerOptions": {
- "baseUrl": "./",
- "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/*": ["../shared/*"]
- }
- }
- }
|