fei.wang
9 天以前 ae7b22322555448d95fd56f505bafa325c167a26
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "compilerOptions": {
    "target": "es5",
    "module": "commonjs",
    "lib": [
      "es5"
    ],
    "strict": true,
    "noEmit": false,
    "noImplicitAny": true,
    "noImplicitThis": true,
    "strictNullChecks": true,
    "strictFunctionTypes": true,
    // Expose module under its CJS/AMD name
    "baseUrl": ".",
    "paths": {
      "psl": [
        "./index.d.ts"
      ]
    }
  }
}