forked from elastic/eui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
63 lines (49 loc) · 2 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"compilerOptions": {
"baseUrl": ".",
"rootDir": ".",
// emit files to the `types` dir, these are ignored by everything but TS needs _somewhere_ to emit
"outDir": "types",
// generate declaration files
"declaration": true,
// re-use info from previous runs to improve performance
"incremental": true,
// don't allow un-used variables
"noUnusedLocals": true,
// Enables all strict type checking options.
"strict": true,
// Output as ES Modules & esnext code, webpack will handle further conversion
"module": "esnext",
"target": "esnext",
// Allows default imports from modules with no default export. This does not affect code emit, just type checking.
// We have to enable this option explicitly since `esModuleInterop` doesn't enable it automatically when ES2015 or
// ESNext module format is used.
"allowSyntheticDefaultImports": true,
// Support .tsx files and transform JSX into calls to React.createElement
"jsx": "react",
// Emits __importStar and __importDefault helpers for runtime babel ecosystem compatibility.
"esModuleInterop": true,
// Allow importing JSON files
"resolveJsonModule": true,
// Resolve modules in the same way as Node.js. Aka make `require` works the
// same in TypeScript as it does in Node.js.
"moduleResolution": "node",
// Disallow inconsistently-cased references to the same file.
"forceConsistentCasingInFileNames": true,
// enables "core language features"
"lib": [
// ESNext auto includes previous versions all the way back to es5
"esnext",
// includes support for browser APIs
"dom"
],
// Specifies where to find library definitions. When this is explicitly set,
// it has to include the default location i.e. node_modules/@types
"typeRoots": ["node_modules/@types", "src/custom_typings"]
},
"include": [
"./src/**/*",
"./src-docs/**/*"
],
"exclude": ["node_modules", "**/*/*.spec.tsx", "**/*/*.a11y.tsx"]
}