mirror of
https://github.com/microsoft/autogen.git
synced 2026-01-07 12:40:53 +00:00
21 lines
407 B
JSON
21 lines
407 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"lib": ["dom", "esnext"],
|
|
"jsx": "react",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"./types/*",
|
|
"./src/**/*",
|
|
"./gatsby-node.ts",
|
|
"./gatsby-config.ts",
|
|
"./plugins/**/*"
|
|
]
|
|
}
|