-
Notifications
You must be signed in to change notification settings - Fork 82
/
tsconfig.json
50 lines (44 loc) · 1.39 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"compilerOptions": {
"allowJs": true,
"alwaysStrict": true,
"baseUrl": "./",
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"incremental": true,
"jsx": "preserve",
"lib": ["es5", "es6", "esnext", "dom"],
"listEmittedFiles": true,
"module": "ESNext",
"moduleResolution": "node",
"noEmit": false,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": false,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "__out",
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "es6",
"paths": {
"@dcos/http-service": ["src/typings/dcos__http-service"],
"@dcos/mesos-client": ["src/typings/dcos__mesos-client"],
"reactjs-mixin": ["src/typings/reactjs_mixin"],
"@extension-kid/core": ["node_modules/@extension-kid/core"],
"@extension-kid/*": ["packages/@extension-kid/*"],
"PluginSDK": ["src/js/plugin-bridge/PluginSDK"],
"*": ["*", "packages/*", "src/typings/*"],
"#SRC/*": ["src/*"],
"#LOCALE/*": ["locale/*"],
"#PLUGINS/*": ["plugins/*"],
"#PLUGINS": ["plugins/index"]
}
},
"include": ["src/**/*", "packages/**/*", "plugins/**/*", "locale/**/*"],
"exclude": ["node_modules", "src/styles/**/*"]
}