tldraw/packages/www/tsconfig.json

28 lines
695 B
JSON
Raw Normal View History

2021-08-10 16:12:55 +00:00
{
"compilerOptions": {
2021-09-06 11:44:14 +00:00
"composite": true,
2021-09-04 11:26:46 +00:00
"target": "es5",
2021-09-04 12:02:13 +00:00
"lib": ["dom", "dom.iterable", "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,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
2021-08-10 16:12:55 +00:00
"resolveJsonModule": true,
2021-08-30 18:10:30 +00:00
"isolatedModules": true,
2021-09-04 12:02:13 +00:00
"jsx": "preserve",
"baseUrl": ".",
"rootDir": ".",
"paths": {
2021-09-13 15:38:42 +00:00
"-*": ["./*"],
"@tldraw/tldraw": ["../tldraw"]
2021-09-04 12:02:13 +00:00
}
2021-09-04 11:26:46 +00:00
},
2021-09-04 12:02:13 +00:00
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
2021-09-06 11:44:14 +00:00
"exclude": ["node_modules"],
2021-09-13 15:38:42 +00:00
"references": [{ "path": "../tldraw" }, { "path": "../core" }]
2021-08-10 16:12:55 +00:00
}