Skip to content

Commit

Permalink
Move one file off root, and revert format changes
Browse files Browse the repository at this point in the history
  • Loading branch information
enricoros committed Oct 12, 2024
1 parent a74893c commit 070ad72
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 32 deletions.
File renamed without changes.
48 changes: 16 additions & 32 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,56 +8,40 @@
"resolveJsonModule": true,
"moduleDetection": "force",
"isolatedModules": true,

/* Strictness */
"strict": true,
"noUncheckedIndexedAccess": false,
"checkJs": true,

/* Bundled projects */
"lib": [
"dom",
"dom.iterable",
"ESNext"
],
"lib": ["dom", "dom.iterable", "ESNext"],
"noEmit": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"jsx": "preserve",
"plugins": [
{
"name": "next"
}
],
"plugins": [{"name": "next"}],
"incremental": true,

/* Custom options */
"forceConsistentCasingInFileNames": true,
"jsxImportSource": "@emotion/react",

/* Path Aliases */
"baseUrl": ".",
"paths": {
"~/common/*": [
"src/common/*"
],
"~/modules/*": [
"src/modules/*"
],
"~/server/*": [
"src/server/*"
]
"~/common/*": ["src/common/*"],
"~/modules/*": ["src/modules/*"],
"~/server/*": ["src/server/*"]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
// this is here only because otherwise, during standalone build the process would update this file
// defaults
"next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts",
// declarations for vitest
"src/common/types/*.d.ts",
// prevents update to this file by the standalone build process
"dist/types/**/*.ts",
"declarations.d.ts",
],
"exclude": [
"node_modules",
"dist",
"electron",
"vitest.config.ts"
]
}
"exclude": ["node_modules", "dist", "electron", "vitest.config.ts"]
}

0 comments on commit 070ad72

Please sign in to comment.