-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
47 lines (47 loc) · 1.09 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
{
"compileOnSave": true,
"compilerOptions": {
"allowJs": false,
"baseUrl": ".",
"declaration": false,
"emitBOM": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"jsx": "react-jsx",
"jsxImportSource": "preact",
"module": "ESNext",
"moduleResolution": "Node",
"noEmit": true,
"noEmitHelpers": false,
"noEmitOnError": false,
"outDir": "./wwwroot/esm",
"paths": {
"@/*": [ "Modules/*" ],
"@serenity-is/*": [ "node_modules/@serenity-is/*/dist/index" ],
"react": [ "./node_modules/preact/compat/" ],
"react-dom": [ "./node_modules/preact/compat/" ]
},
"preserveConstEnums": true,
"rootDir": ".",
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"sourceMap": false,
"target": "ES6",
"typeRoots": [
"./node_modules/@types"
],
"types": [
"jquery",
"jquery.validation",
"jqueryui"
]
},
"include": [
"./Modules/**/*"
],
"typeAcquisition": {
"enable": false
}
}