tldraw/packages/www/tsconfig.json

29 lines
476 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",
2021-08-30 18:10:30 +00:00
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules",
"**/*.test.ts",
"**/*.spec.ts",
"dist"
],
2021-08-10 16:12:55 +00:00
"compilerOptions": {
2021-08-30 18:10:30 +00:00
"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-30 18:10:30 +00:00
"isolatedModules": true,
"noEmit": true
2021-08-13 12:48:08 +00:00
}
2021-08-10 16:12:55 +00:00
}