-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
40 lines (40 loc) · 842 Bytes
/
tsconfig.json
File metadata and controls
40 lines (40 loc) · 842 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
{
"compilerOptions": {
"experimentalDecorators": true,
"target": "es2022",
"module": "es2022",
"lib": [
"DOM",
"ES2021"
],
"allowJs": true,
"sourceMap": false,
"outDir": "./dist/src",
"strict": false,
"noImplicitAny": false,
"strictNullChecks": false,
"noImplicitThis": false,
"noImplicitReturns": true,
"moduleResolution": "node",
"typeRoots" : [
"./node_modules/@types",
"./src/types",
"./node_modules"
],
"types": [
"beavers-gamepad/src",
"@league-of-foundry-developers/foundry-vtt-types"
],
"newLine": "lf",
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true
},
"include": [
"./src/**/*.ts",
"./src/**/*.js"
],
"exclude": [
"./templates/**/*"
]
}