tldraw/packages/www/tsconfig.json

15 lines
396 B
JSON
Raw Normal View History

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