tldraw/packages/www/tsconfig.json
2021-09-03 15:11:50 +01:00

18 lines
456 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": ".",
"baseUrl": ".",
"outDir": "./dist/types",
"allowJs": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"paths": {
"-*": ["./*"]
}
}
}