23 lines
552 B
JSON
23 lines
552 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"module": "amd",
|
|
"moduleResolution": "Node",
|
|
"noEmit": true,
|
|
"noImplicitAny": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"resolveJsonModule": true,
|
|
"skipDefaultLibCheck": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"target": "ESNext"
|
|
},
|
|
"exclude": ["node_modules", "jest", "**/__tests__/*"],
|
|
"compileOnSave": false
|
|
}
|