1234567891011121314151617181920 |
- {
- "extends": "../../../tsconfig.shared",
- "compilerOptions": {
- "outDir": "./lib",
- "rootDir": "./src",
- "resolveJsonModule": false,
- "noImplicitAny": false,
- "skipLibCheck": true
- },
- "include": ["./src/**/*.*"],
- "exclude": ["./src/**/*.test.ts"],
- "references": [
- {
- "path": "../store-default/tsconfig.build.json"
- },
- {
- "path": "../utils/tsconfig.build.json"
- }
- ]
- }
|