1234567891011121314151617181920 |
- {
- "compilerOptions": {
- "target": "es6",
- "moduleResolution": "node",
- "strict": true,
- "importHelpers": true,
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true,
- "noImplicitThis": false,
- "declaration": true,
- "baseUrl": ".",
- "outDir": "./dist",
- "lib": ["esnext", "dom", "dom.iterable", "scripthost"],
- "paths": {
- "@/*": ["src/*"]
- }
- },
- "include": ["src"],
- "exclude": ["node_modules"]
- }
|