nebv
2020-10-11 03b6025d07e4df99474f80d3fa57e8b5238ba40c
提交 | 用户 | age
2f6253 1 {
2   "compilerOptions": {
3     "target": "esnext",
4     "module": "esnext",
5     "moduleResolution": "node",
6     "strict": true,
7     "forceConsistentCasingInFileNames": true,
8     "allowSyntheticDefaultImports": true,
9     "strictFunctionTypes": false,
10     "jsx": "react",
11     "baseUrl": ".",
12     "allowJs": true,
13     "esModuleInterop": true,
14     "noUnusedLocals": true,
15     "noUnusedParameters": true,
16     "experimentalDecorators": true,
66b561 17     "lib": [
N 18       "dom",
19       "esnext"
20     ],
2f6253 21     "incremental": true,
22     "skipLibCheck": true,
23     "paths": {
66b561 24       "/@/*": [
N 25         "src/*"
26       ]
2f6253 27     }
28   },
66b561 29   "exclude": [
N 30     "node_modules",
31     "dist",
32     "**/*.js"
33   ]
2f6253 34 }