forked from foundryvtt/pf2e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
58 lines (57 loc) · 1.72 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
48
49
50
51
52
53
54
55
56
57
58
{
"compilerOptions": {
"target": "es2018",
"module": "commonjs",
"lib": ["esnext", "dom", "dom.iterable"],
"noEmit": true,
"strict": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"sourceMap": true,
"baseUrl": ".",
"allowUnusedLabels": false,
"removeComments": false,
"resolveJsonModule": true,
"paths": {
"@actor": ["src/module/actor"],
"@actor/*": ["src/module/actor/*"],
"@item": ["src/module/item"],
"@item/*": ["src/module/item/*"],
"@scene": ["src/module/scene"],
"@scene/*": ["src/module/scene/*"],
"@system/*": ["src/module/system/*"],
"@module/*": ["src/module/*"],
"@scripts/*": ["src/scripts/*"],
"@util": ["src/util"],
"@util/*": ["src/util/*"],
// https://github.com/Hypercubed/mini-signals/issues/20
"mini-signals": [
"node_modules/resource-loader/typings/mini-signals.d.ts"
]
},
"types": [
"jquery",
"tooltipster",
"jest",
"node",
"webpack-env",
"handlebars"
],
"typeRoots": [
"node_modules/@types",
"node_modules/handlebars",
"types/foundry"
]
},
"watchOptions": {
"excludeDirectories": ["packs/data/", "static/packs/"],
},
"ts-node": {
"files": true
}
}