mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-06 21:54:01 -05:00
21 lines
415 B
JSON
21 lines
415 B
JSON
{
|
|
"extends": "@sim/tsconfig/nextjs.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/.source/*": ["./.source/*"],
|
|
"@/*": ["./*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".next/types/**/*.ts",
|
|
"content/docs/execution/index.mdx",
|
|
"content/docs/connections/index.mdx",
|
|
".next/dev/types/**/*.ts"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|