-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
37 lines (35 loc) · 962 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
31
32
33
34
35
36
37
{
"ts-node": {
"transpileOnly": true
},
"compilerOptions": {
"target": "ES2017",
"module": "esnext",
"lib": ["esnext"],
"moduleResolution": "node",
"sourceMap": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitThis": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
"useUnknownInCatchVariables": true,
"baseUrl": "./",
"resolveJsonModule": true,
"removeComments": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"experimentalDecorators": true,
"isolatedModules": true,
"paths": {
"@julr/factorify": ["./packages/core/src/index.ts"],
"@julr/japa-factorify-plugin": ["./packages/japa-plugin/src/index.ts"]
}
}
}