-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
64 lines (62 loc) · 1.69 KB
/
Copy pathtsconfig.json
File metadata and controls
64 lines (62 loc) · 1.69 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
References:
https://www.typescriptlang.org/docs/handbook/tsconfig-json.html
https://github.com/DestinyItemManager/DIM/blob/master/tsconfig.json
*/
{
"compilerOptions": {
"esModuleInterop": true,
"outDir": "./destiny-focus/static/build/",
"sourceMap": true,
"noImplicitAny": true,
// Used to: import React from 'react'
"allowSyntheticDefaultImports" : true,
"module": "es6",
"target": "es5",
"jsx": "react",
"allowJs": true,
"resolveJsonModule": true,
"moduleResolution": "node",
"paths": {
"app/*": ["./assets/app/*"],
// "data/*": ["assets/data/*"],
"images/*": ["./assets/images/*"],
"destiny-icons/*": ["./assets/destiny-icons/*"]
// "*.css": ["config/css-stub.js"]
}
},
"include": ["./assets/**/*", "./assets/Components/custom.d.ts"]
}
/*
{
"compilerOptions": {
"esModuleInterop": true,
"outDir": "./destiny-focus/static/build/",
"sourceMap": true,
"strictNullChecks": true,
"strictBindCallApply": true,
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true,
"strictPropertyInitialization": true,
"module": "commonjs",
"target": "es5",
"jsx": "react",
"moduleResolution": "node",
"noUnusedLocals": true,
"noUnusedParameters": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"baseUrl": ".",
"allowJs": true,
"paths": {
"app/*": ["assets/app/*"],
// "data/*": ["assets/data/*"],
"images/*": ["assets/images/*"],
"destiny-icons/*": ["assets/destiny-icons/*"]
// "*.css": ["config/css-stub.js"]
}
},
// "include": ["./assets/**//*"]
}
*/