tldraw/tsconfig.json

36 lines
1.3 KiB
JSON
Raw Normal View History

2021-05-09 12:03:39 +00:00
{
"compilerOptions": {
2021-08-10 16:12:55 +00:00
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"declaration": true,
2021-05-09 12:03:39 +00:00
"esModuleInterop": true,
2021-08-10 16:12:55 +00:00
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importsNotUsedAsValues": "error",
"incremental": true,
"importHelpers": true,
"jsx": "react",
"lib": ["dom", "esnext"],
2021-05-09 12:03:39 +00:00
"module": "esnext",
"moduleResolution": "node",
2021-08-10 16:12:55 +00:00
"noEmit": true,
"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. */,
"outDir": "dist",
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"strictFunctionTypes": true /* Enable strict checking of function types. */,
"strictNullChecks": true /* Enable strict null checks. */,
"target": "es5",
2021-08-10 17:19:30 +00:00
"typeRoots": ["node_modules/@types", "node_modules/jest"],
2021-08-10 16:12:55 +00:00
"types": ["node", "jest"],
"paths": {
"@tldraw/*": ["./packages/*"]
}
}
2021-05-09 12:03:39 +00:00
}