Tldraw/apps/www/tsconfig.json

36 wiersze
917 B
JSON
Czysty Zwykły widok Historia

2021-08-10 16:12:55 +00:00
{
"compilerOptions": {
"composite": false,
"incremental": false,
"resolveJsonModule": true,
"target": "es6",
"lib": ["dom", "esnext"],
2021-08-10 16:12:55 +00:00
"allowJs": true,
2021-09-04 11:26:46 +00:00
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"emitDeclarationOnly": false,
2021-09-04 11:26:46 +00:00
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
2021-08-30 18:10:30 +00:00
"isolatedModules": true,
2021-09-04 12:02:13 +00:00
"jsx": "preserve",
"rootDir": ".",
"baseUrl": ".",
2021-09-04 12:02:13 +00:00
"paths": {
"~*": ["./*"],
"@tldraw/core": ["../../packages/core"],
"@tldraw/tldraw": ["../../packages/tldraw"]
}
2021-09-04 11:26:46 +00:00
},
"references": [
{ "path": "../../packages/vec" },
{ "path": "../../packages/intersect" },
{ "path": "../../packages/core" },
{ "path": "../../packages/tldraw" }
],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
2021-08-10 16:12:55 +00:00
}