a0007142e0
* remove extension / electron app * switch examples to vite * Update licenses * Add script * fix titles
29 lines
710 B
JSON
29 lines
710 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"allowJs": false,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"*": ["src/*"]
|
|
}
|
|
},
|
|
"include": ["src"],
|
|
"references": [
|
|
{ "path": "./tsconfig.node.json" },
|
|
{ "path": "../../packages/tldraw" },
|
|
{ "path": "../../packages/core" }
|
|
]
|
|
}
|