1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{
"compilerOptions": {
"target": "ESNext",
"moduleResolution": "node",
"module": "ESNext",
"strict": true,
"noEmit": true,
"declaration": true,
"stripInternal": true,
// We need to disable these for now, and need to tackle them in another PR
"strictNullChecks": false,
"strictBindCallApply": false,
"noImplicitAny": false,
// These are configs specifically for !build and have to be reverted in the tsconfig.build.json
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true
},
"exclude": ["node_modules", "dist", "locale"]
}
|