-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathtsconfig.json
More file actions
41 lines (41 loc) · 1.07 KB
/
tsconfig.json
File metadata and controls
41 lines (41 loc) · 1.07 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
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@shared/*": ["src/shared/*"],
"@app/*": ["src/app/*"],
"@features/*": ["src/features/*"],
"@osm/*": ["src/osm/*"]
},
"rootDir": "src",
"esModuleInterop": true,
"jsx": "react-jsx",
"lib": ["ES2023", "dom", "dom.iterable", "WebWorker"],
"module": "NodeNext",
"moduleResolution": "nodenext",
"noPropertyAccessFromIndexSignature": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "dist",
"plugins": [{ "transform": "typia/lib/transform" }],
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"strictNullChecks": true,
"target": "ES2022",
// "noUncheckedIndexedAccess": true, // TODO one day
"types": [
"gapi",
"facebook-js-sdk",
"facebook-pixel",
"google.picker",
"google.accounts",
"@webgpu/types",
"@types/wicg-file-system-access"
]
},
"include": ["src", "typings"]
}