-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathtsconfig.json
More file actions
43 lines (43 loc) · 935 Bytes
/
tsconfig.json
File metadata and controls
43 lines (43 loc) · 935 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
38
39
40
41
42
43
{
"compileOnSave": true,
"compilerOptions": {
"target": "ES6",
"module": "nodenext",
"moduleResolution": "nodenext",
"esModuleInterop": true,
"declaration": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"removeComments": true,
"downlevelIteration": true,
"noLib": false,
"alwaysStrict": true,
"sourceMap": true,
"isolatedModules": true,
"lib": ["ES6", "DOM", "ES2022"],
"typeRoots": [
"./node_modules/@types",
"./node_modules/@node"
],
"baseUrl": ".",
"paths": {
"common/*": ["ts/common/*"],
"#source/*": ["../components/mjs/*"],
"#src/*": ["./src/*"],
"#helpers": ["./src/index.js"]
},
"outDir": "js"
},
"include": ["ts/**/*"],
"exclude": [
"dist",
"js",
"node_modules",
"bin",
"lib",
"sre-tests",
"src"
]
}