tldraw/packages/www/tsconfig.json

47 lines
795 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-11-01 15:26:44 +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-30 18:10:30 +00:00
"isolatedModules": true,
2021-09-04 12:02:13 +00:00
"jsx": "preserve",
"baseUrl": ".",
"rootDir": ".",
"paths": {
2021-11-01 15:26:44 +00:00
"-*": [
"./*"
],
"@tldraw/tldraw": [
"../tldraw"
]
},
2021-11-01 15:26:44 +00:00
"incremental": true,
"resolveJsonModule": true
2021-09-04 11:26:46 +00:00
},
2021-11-01 15:26:44 +00:00
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules"
],
"references": [
{
"path": "../tldraw"
}
]
2021-08-10 16:12:55 +00:00
}