-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathtsconfig.json
More file actions
37 lines (37 loc) · 969 Bytes
/
tsconfig.json
File metadata and controls
37 lines (37 loc) · 969 Bytes
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
{
"compilerOptions": {
"target": "esnext",
"lib": ["dom", "dom.iterable", "esnext", "Webworker"],
"allowJs": true,
"allowSyntheticDefaultImports": true,
"baseUrl": "src/",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"jsx": "react-jsx",
"module": "esnext",
"moduleResolution": "node",
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"plugins": [
{
"name": "typescript-plugin-css-modules"
}
]
},
"exclude": ["node_modules"],
"include": [
"src",
"src/common/components/io/new/inputs/L1/L1ControlledSelect/.tsx"
],
"ts-node": {
// these options are overrides used only by ts-node
// same as the --compilerOptions flag and the TS_NODE_COMPILER_OPTIONS environment variable
"compilerOptions": {
"module": "commonjs"
}
}
}