OSDN Git Service

chore: add jsconfig.json
[bytom/Byone.git] / jsconfig.json
1 {
2   "compilerOptions": {
3     "experimentalDecorators": true,
4     "baseUrl": ".",
5     "paths": {
6       "@/*": ["./src/*"],
7     },
8     "target": "ES6",
9     "module": "commonjs",
10     "allowSyntheticDefaultImports": true
11   },
12   "include": ["./src/**/*"],
13   "exclude": ["node_modules"]
14 }
15