forked from assurance-maladie-digital/design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
37 lines (37 loc) · 842 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
27
28
29
30
31
32
33
34
35
36
37
// TypeScript configuration
// shared across packages
{
"compilerOptions": {
// Always transpile to ES5
"target": "es5",
"module": "commonjs",
// Strict Type-Checking
"strict": true,
// Node.js resolution strategy
"moduleResolution": "node",
// Resolve JSON files as modules
"resolveJsonModule": true,
// Emit interoperability between CommonJS and ES Modules
"esModuleInterop": true,
// Allow default imports from modules with no default export.
// This does not affect code emit, just type checking.
"allowSyntheticDefaultImports": true,
// Enables experimental support for ES7 decorators
"experimentalDecorators": true,
// Shared types
"types": [
"node",
"fs-extra"
],
"lib": [
"es2017",
"es2015",
"dom",
"dom.iterable",
"scripthost"
]
},
"exclude": [
"node_modules"
]
}