mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
* feat: add solid framework package and example * solidstart docs * Update 02-oauth-tutorial.mdx * minor docs fixes * Fix sidebar typo * Update sync.yml * Update sidebars.js * minor fixes * fix deps * upgrade auth example * Update root.tsx * Update NavBar.tsx * Update Protected.tsx * protected * move example * Update sidebars.js Co-authored-by: Balázs Orbán <info@balazsorban.com> Co-authored-by: Nico Domino <yo@ndo.dev>
18 lines
397 B
JSON
18 lines
397 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "esnext",
|
|
"moduleResolution": "Node",
|
|
"strict": false,
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "solid-js",
|
|
"module": "esnext",
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"strictNullChecks": true
|
|
},
|
|
"exclude": ["node_modules", "dist"],
|
|
"include": ["./src"]
|
|
}
|