| 1234567891011121314151617181920212223242526 |
- {
- "compilerOptions": {
- "target": "ES2019",
- "module": "ESNext",
- "moduleResolution": "Bundler",
- "lib": [
- "DOM",
- "ES2020"
- ],
- "strict": true,
- "composite": true,
- "declaration": true,
- "outDir": "dist",
- "rootDir": "src",
- "skipLibCheck": true,
- "verbatimModuleSyntax": true
- },
- "include": [
- "src/**/*.ts"
- ],
- "references": [
- {
- "path": "../../core"
- }
- ]
- }
|