forked from openshift-pipelines/console-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
31 lines (31 loc) · 773 Bytes
/
tsconfig.json
File metadata and controls
31 lines (31 loc) · 773 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
{
"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"
}
},
"compilerOptions": {
"baseUrl": ".",
"module": "esnext",
"moduleResolution": "node",
"target": "es2020",
"jsx": "react",
"allowJs": true,
"strict": false,
"noUnusedLocals": true,
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"paths": {
"react": ["./node_modules/react", "./node_modules/@types/react"]
}
},
"exclude": [
".yarn",
"**/node_modules",
"**/integration-tests",
"./integration-tests/cypress.config.ts"
],
"include": ["src", "custom.d.ts"]
}