tldraw/packages/www/tsconfig.json

32 lines
702 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-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"],
"references": [
{
"path": "../../packages/tldraw"
},
{ "path": "../../packages/core" }
]
2021-08-10 16:12:55 +00:00
}