stack/packages/stack-sc/tsconfig.json
2024-07-07 17:28:14 -07:00

19 lines
457 B
JSON

{
"compilerOptions": {
"jsx": "react-jsx",
"outDir": "dist",
"rootDir": "src",
"declaration": true,
"target": "ES2021",
"lib": ["DOM", "DOM.Iterable", "ES2021", "ES2022.Error"],
"module": "ES2015",
"moduleResolution": "Bundler",
"esModuleInterop": true,
"noErrorTruncation": true,
"skipLibCheck": true,
"strict": true
},
"include": ["src/**/*", "next-env.d.ts"],
"exclude": ["node_modules", "dist"]
}