tldraw/packages/www/tsconfig.json
2021-08-13 13:48:08 +01:00

14 lines
396 B
JSON

{
"extends": "../../tsconfig.base.json",
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules", "**/*.test.ts", "**/*.spec.ts", "dist"],
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"rootDir": ".",
"outDir": "./dist/types",
"baseUrl": "src",
"allowJs": true,
"resolveJsonModule": true,
"isolatedModules": true
}
}