tldraw/tsconfig.json

37 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 20:36:29 +00:00
"noEmit": false,
2021-08-10 16:12:55 +00:00
"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,
2021-08-10 20:36:29 +00:00
"strict": false,
2021-08-10 16:12:55 +00:00
"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": {
2021-08-11 21:11:23 +00:00
"@tldraw/tldraw": ["./packages/tldraw/dist"],
"@tldraw/core": ["./packages/core/dist"]
2021-08-10 16:12:55 +00:00
}
}
2021-05-09 12:03:39 +00:00
}