e43b0103fd
This PR moves our "fractical indices" library into its own package. - [x] `major` — Breaking Change ### Release Notes - [@tldraw/editor] Remove fractional indices code into `@tldraw/indices` - [@tldraw/indices] Create library for fractional indices code
37 lines
829 B
JSON
37 lines
829 B
JSON
{
|
|
"include": ["test"],
|
|
"exclude": ["node_modules", "dist", ".tsbuild*"],
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"importHelpers": true,
|
|
"lib": ["dom", "esnext"],
|
|
"esModuleInterop": true,
|
|
"target": "ESNext",
|
|
"moduleResolution": "node16",
|
|
"types": [
|
|
"node",
|
|
"@wdio/globals/types",
|
|
"@wdio/mocha-framework",
|
|
"@types/mocha",
|
|
"wdio-vscode-service"
|
|
],
|
|
"noEmitOnError": false,
|
|
"noEmit": true
|
|
},
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"module": "CommonJS"
|
|
}
|
|
},
|
|
"references": [
|
|
{ "path": "../packages/editor" },
|
|
{ "path": "../packages/indices" },
|
|
{ "path": "../packages/tlschema" },
|
|
{ "path": "../packages/tlstore" },
|
|
{ "path": "../packages/primitives" }
|
|
]
|
|
}
|