1{ 2 "compilerOptions": { 3 "baseUrl": "./src", 4 "outDir": "./dist/", 5 "noImplicitAny": false, 6 "module": "es6", 7 "target": "es5", 8 "allowJs": false, 9 "resolveJsonModule": true, 10 "moduleResolution": "node", 11 "allowSyntheticDefaultImports": true, 12 "lib": [ 13 "es2019", 14 "dom", 15 ], 16 "paths": { 17 "@/*": [ 18 "*" 19 ], 20 } 21 } 22}