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