tldraw/packages/core/tsconfig.build.json

23 lines
389 B
JSON
Raw Normal View History

2021-08-14 15:46:21 +00:00
{
"extends": "../../tsconfig.base.json",
"include": ["src"],
"exclude": [
"node_modules",
"**/*.test.tsx",
"**/*.test.ts",
"**/*.spec.tsx",
"**/*.spec.ts",
"src/test-utils",
"dist"
],
"compilerOptions": {
"declaration": true,
"rootDir": "src",
"outDir": "./dist/types",
"baseUrl": "src",
"paths": {
"+*": ["./*"]
}
}
}