-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
26 lines (26 loc) · 891 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"compilerOptions": {
"baseUrl": "src",
"inlineSourceMap": true,
"inlineSources": false,
"module": "ESNext",
"target": "es2016",
"allowJs": false,
"noImplicitAny": false, // 不允许隐式的any类型
"strictFunctionTypes": true,
"strictNullChecks": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"strict": true,
"allowSyntheticDefaultImports": true,
"suppressImplicitAnyIndexErrors": true,
"downlevelIteration": true,
"moduleResolution": "node",
"esModuleInterop": true,
"importHelpers": true,
"lib": ["dom", "es5", "scripthost", "es2016"],
"outDir": ""
},
"include": ["src/*.ts", "src/typings/components.d.ts", "src/components/components.d.ts", "src/components/colorPicker.ts"],
"exclude": ["lib/*"]
}