-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 828 Bytes
/
Copy pathtsconfig.json
File metadata and controls
26 lines (26 loc) · 828 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
{
"compileOnSave": false,
"compilerOptions": {
"typeRoots": ["node_modules/@minecraft", "node_modules/@types"],
"types": ["node", "server"],
"lib": ["esnext"],
"target": "esnext",
"module": "esnext",
"sourceMap": false,
"moduleResolution": "node",
"outDir": "build/addon/ReplayCraft_BP/scripts",
"removeComments": false,
"allowJs": true,
"checkJs": false,
"useDefineForClassFields": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noImplicitAny": true,
"alwaysStrict": true,
"noFallthroughCasesInSwitch": true,
"noImplicitThis": true,
"noUnusedParameters": true
},
"include": ["src", "src/ReplayCraft_BP/scripts/"],
"exclude": ["node_modules"]
}