-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
30 lines (30 loc) · 940 Bytes
/
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
{
"compileOnSave": false,
"compilerOptions": {
"strict": true,
"noEmit": true,
// "rootDir": "src",
"target": "ESNext",
"module": "ESNext",
"skipLibCheck": false,
"moduleResolution": "Node",
"outDir": "./dist",
"typeRoots": ["node_modules/altv-esbuild/altv-enums/types", "node_modules/@altv", "node_modules/@types"],
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noImplicitOverride": true,
"noUnusedParameters": true,
"noErrorTruncation": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noImplicitAny": true,
"baseUrl": "src",
"paths": {
"core/*": ["core/*"],
"modules/*": ["modules/*"],
"realm/*": ["realm/*"],
}
}
}