d7002057d7
This PR moves the tldraw.com app into the public repo. ### Change Type - [x] `internal` — Any other changes that don't affect the published package[^2] --------- Co-authored-by: Dan Groshev <git@dgroshev.com> Co-authored-by: alex <alex@dytry.ch>
34 lines
898 B
JSON
34 lines
898 B
JSON
{
|
|
"include": ["api"],
|
|
"exclude": ["node_modules", "dist", ".tsbuild*", ".vercel"],
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"importHelpers": true,
|
|
"resolveJsonModule": true,
|
|
"incremental": true,
|
|
"jsx": "react-jsx",
|
|
"lib": ["dom", "DOM.Iterable", "esnext"],
|
|
"experimentalDecorators": true,
|
|
"module": "CommonJS",
|
|
"target": "esnext",
|
|
"moduleResolution": "node",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"useDefineForClassFields": true,
|
|
"noImplicitOverride": true,
|
|
"noEmit": true
|
|
},
|
|
"references": []
|
|
}
|