mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2024-11-13 02:55:07 +08:00
4b3059bdc7
* impr: Import shared types back into MonkeyTypes namespace, partially reverts #4769 * down to 6 errors * fixes * cleanup
40 lines
1.2 KiB
JSON
40 lines
1.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES6",
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"types": ["jquery", "select2", "node"],
|
|
"allowUmdGlobalAccess": true,
|
|
"resolveJsonModule": true,
|
|
"outDir": "./build",
|
|
"newLine": "lf",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"strictBindCallApply": true,
|
|
"strictPropertyInitialization": true,
|
|
"noImplicitThis": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"alwaysStrict": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"exactOptionalPropertyTypes": false,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedIndexedAccess": false,
|
|
"noImplicitOverride": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"allowUnusedLabels": false,
|
|
"allowUnreachableCode": false,
|
|
"skipLibCheck": false,
|
|
"paths": {
|
|
"@backend/*": ["../backend/src/*"]
|
|
}
|
|
},
|
|
"include": ["./src/**/*.ts"],
|
|
"files": ["src/ts/modules.d.ts"]
|
|
}
|