-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathtsconfig.json
More file actions
40 lines (34 loc) · 887 Bytes
/
tsconfig.json
File metadata and controls
40 lines (34 loc) · 887 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
/* Type Checking */
"erasableSyntaxOnly": true,
"noImplicitOverride": true,
"noUncheckedIndexedAccess": true,
"strict": true,
/* Modules */
"module": "amd",
"moduleResolution": "node10",
"paths": {
// "N": ["./N"],
"N/*": ["./N/*"]
},
"resolveJsonModule": true,
/* Emit */
"newLine": "LF",
"noEmit": true,
"sourceMap": false,
/* JavaScript Support */
"allowJs": false,
/* Interop Constraints */
"esModuleInterop": true,
"isolatedModules": true,
// "verbatimModuleSyntax": true,
/* Language and Environment */
"lib": ["ES2024", "dom", "dom.iterable"], // https://suiteadvanced.com/suitescript-caniuse/
"moduleDetection": "force",
"target": "ES2024", // https://suiteadvanced.com/suitescript-caniuse/
/* Completeness */
"skipLibCheck": true
}
}