tldraw/tsconfig.base.json

34 lines
1.2 KiB
JSON
Raw Normal View History

2021-08-13 12:48:08 +00:00
{
"compilerOptions": {
2021-09-06 11:44:14 +00:00
// For references
2021-08-13 12:48:08 +00:00
"declaration": true,
2021-09-06 11:44:14 +00:00
"declarationMap": true,
"sourceMap": true,
// Other
"allowSyntheticDefaultImports": true,
2021-08-13 12:48:08 +00:00
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
2021-09-06 11:44:14 +00:00
"importHelpers": true,
2021-08-13 12:48:08 +00:00
"importsNotUsedAsValues": "error",
"incremental": true,
2021-09-06 11:44:14 +00:00
"jsx": "preserve",
"lib": ["dom", "esnext"],
"module": "esnext",
2021-08-13 12:48:08 +00:00
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true /* Report errors for fallthrough cases in switch statement. */,
"noImplicitAny": true /* Raise error on expressions and declarations with an implied 'any' type. */,
"noImplicitReturns": true /* Report error when not all code paths in function return a value. */,
"noUnusedLocals": false /* Report errors on unused locals. */,
"noUnusedParameters": false /* Report errors on unused parameters. */,
"skipLibCheck": true,
2021-09-08 10:46:28 +00:00
"strict": true,
2021-08-13 12:48:08 +00:00
"strictFunctionTypes": true /* Enable strict checking of function types. */,
"strictNullChecks": true /* Enable strict null checks. */,
2021-09-06 11:44:14 +00:00
"stripInternal": true,
2021-08-29 13:33:43 +00:00
"target": "es6",
2021-08-13 12:48:08 +00:00
"typeRoots": ["node_modules/@types", "node_modules/jest"],
2021-09-06 11:44:14 +00:00
"types": ["node", "jest"]
2021-08-13 12:48:08 +00:00
}
}