tldraw/apps/www/tsconfig.json

29 lines
713 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,
"target": "es6",
"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": {
"-*": ["./*"],
"@tldraw/core": ["../../packages/core"],
"@tldraw/tldraw": ["../../packages/tldraw"]
},
2021-11-01 15:26:44 +00:00
"incremental": true,
"resolveJsonModule": true
2021-09-04 11:26:46 +00:00
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
2021-08-10 16:12:55 +00:00
}