{ "compilerOptions": { "target": "ES2020", "lib": ["DOM", "DOM.Iterable", "ESNext"], "module": "ESNext", "moduleResolution": "Node", "jsx": "react-jsx", "esModuleInterop": true, "allowSyntheticDefaultImports": true, "strict": true, "forceConsistentCasingInFileNames": true, "skipLibCheck": true, "isolatedModules": true, "resolveJsonModule": true, "noEmit": true, "baseUrl": ".", "paths": { "@/": ["src/*"] } }, "include": ["src/**/*"], "exclude": ["node_modules", "dist"] } _Originally posted by @flynnjustin24 in https://github.com/flynnjustin24/copilot/pull/1#issuecomment-5138424077_
{
"compilerOptions": {
"target": "ES2020",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"module": "ESNext",
"moduleResolution": "Node",
"jsx": "react-jsx",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"isolatedModules": true,
"resolveJsonModule": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"@/": ["src/"]
}
},
"include": ["src/**/"],
"exclude": ["node_modules", "dist"]
}
Originally posted by @flynnjustin24 in flynnjustin24/copilot#1 (comment)