forked from moodle/moodlenet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig-base.json
25 lines (25 loc) · 965 Bytes
/
tsconfig-base.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
{
"compilerOptions": {
"composite": true,
"noUncheckedIndexedAccess": true,
"declarationMap": true,
"sourceMap": true,
"declaration": true,
// "sourceMap": true /* Generates corresponding '.map' file. */,
"strict": true /* Enable all strict type-checking options. */,
"noUnusedLocals": true /* Report errors on unused locals. */,
"noUnusedParameters": true /* Report errors on unused parameters. */,
"noImplicitReturns": true /* Report error when not all code paths in function return a value. */,
"noFallthroughCasesInSwitch": true /* Report errors for fallthrough cases in switch statement. */,
// "esModuleInterop": true,
// "module": "esnext",
"skipLibCheck": true,
"target": "ESNext",
"jsx": "react-jsx",
// "resolveJsonModule": true,
"lib": ["dom", "dom.iterable", "esnext"],
"moduleResolution": "NodeNext",
"module": "NodeNext",
"allowSyntheticDefaultImports": true
}
}