-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtsconfig.json
45 lines (42 loc) · 1.2 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
{
"include": [
"./src/"
// "./src/types/browser.d.ts",
// "./node_modules/@types/luxon/src/*.d.ts",
],
"compilerOptions": {
"module": "Preserve",
"target": "es2018",
// "baseUrl": "./src",
// "skipLibCheck": true,
// "module": "Preserve",
// "target": "es2016",
"esModuleInterop": true,
"strict": true,
"sourceMap": false,
"allowJs": true,
"rootDir": "src",
"outDir": "./dist/release",
"typeRoots": [
// "./src/types/",
// "./node_modules/@types/luxon/src/"
],
"noImplicitReturns": true,
"noUnusedLocals": false,
"removeComments": true,
// "declaration": true,
"forceConsistentCasingInFileNames": true,
"paths": {
// "resource://gre/modules/ExtensionCommon.sys.mjs": ["./ExtensionCommon.sys.mjs"],
// "gecko": [
// "../s/thunderbird-128.1.0/toolkit/components/extensions/types/gecko.ts"
// ],
// "resource://gre/modules/*": [
// "D:/thunderbird/s/thunderbird-128.1.0/toolkit/modules/",
// "D:/thunderbird/s/thunderbird-128.1.0/toolkit/components/extensions/"
// // "../s/thunderbird-128.1.0/toolkit/modules/",
// // "../s/thunderbird-128.1.0/toolkit/components/extensions/",
// ],
},
}
}