forked from MMRLApp/MMRL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
46 lines (46 loc) · 1.25 KB
/
Copy pathtsconfig.json
File metadata and controls
46 lines (46 loc) · 1.25 KB
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
{
"compilerOptions": {
"outDir": "./app/src/main/assets",
"allowJs": true,
"declaration": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"declarationMap": false,
"typeRoots": ["src/typings/global.d.ts"],
"sourceMap": true,
"strict": true,
"noImplicitReturns": false,
"noImplicitAny": false,
"module": "ES2022",
"lib": ["ES2023.Array", "ES2023", "ES2018", "dom"],
"allowSyntheticDefaultImports": true,
"moduleResolution": "node",
"target": "ES2022",
"resolveJsonModule": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"baseUrl": "./src",
"paths": {
"@Native/*": ["native/*"],
"@Hooks/*": ["hooks/*"],
"@Builders/*": ["builders/*"],
"@Components/*": ["components/*"],
"@Types/*": ["typings/*"],
"@Util/*": ["util/*"],
"@Bootloader": ["index.tsx"],
"@Package": ["./../package.json"],
"@Styles/*": ["styles/*"],
"@Activitys/*": ["activitys/*"],
"@Strings": ["language/core/index.ts"],
"@Annotation/*": ["annotation/*"],
"@Loclaes/*": ["loclaes/*"]
}
},
"ts-node": {
"compilerOptions": {
"module": "CommonJS",
"types": ["node"]
}
},
"include": ["./src/**/*"]
}