| 1234567891011121314151617181920 |
- {
- "compilerOptions": {
- "target": "es6",
- "noImplicitAny": false,
- "rootDir": "./",
- "outDir": "dist",
- "sourceMap": false,
- "moduleResolution": "node",
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true,
- "baseUrl": "./",
- "paths": {
- "@/*": ["src/*"]
- },
- "typeRoots": [
- "node_modules/@types",
- "typings"
- ]
- }
- }
|