mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2024-11-10 17:04:49 +08:00
41 lines
1.2 KiB
JSON
41 lines
1.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES6",
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"types": ["vite/client", "node", "jquery"],
|
|
"allowUmdGlobalAccess": true,
|
|
"resolveJsonModule": true,
|
|
"outDir": "./build",
|
|
"newLine": "lf",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"noEmit": 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": true,
|
|
"noImplicitOverride": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"allowUnusedLabels": false,
|
|
"allowUnreachableCode": false,
|
|
"skipLibCheck": false,
|
|
"paths": {
|
|
"@shared/*": ["../shared-types/*"]
|
|
}
|
|
},
|
|
"include": ["./src/**/*.ts", "../shared-types/**/*.d.ts"],
|
|
"exclude": ["node_modules", "build", "setup-tests.ts", "**/*.spec.ts"]
|
|
}
|