-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
41 lines (37 loc) · 2.86 KB
/
tsconfig.json
File metadata and controls
41 lines (37 loc) · 2.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"$schema": "https://json.schemastore.org/tsconfig",
"include": ["**/*.ts", "**/*.tsx"],
"compilerOptions": {
"target": "ESNext", // Set the JavaScript language version for emitted JavaScript and include compatible library declarations.
"jsx": "react-jsx", // Specify what JSX code is generated.
"module": "ESNext", // Specify what module code is generated.
"lib": ["ESNext", "DOM", "DOM.Iterable"], // Specify a set of bundled library declaration files that describe the target runtime environment.
"types": ["vite/client"], // Specify type package names to be included without being referenced in a source file.
"paths": {
// Specify a set of entries that re-map imports to additional lookup locations.
"#/*": ["./src/*"], // Node subpath imports (package.json `imports`)
"@/*": ["./src/*"] // App shortcut
},
/* Bundler mode */
"moduleResolution": "bundler", // Specify how TypeScript looks up a file from a given module specifier.
"allowImportingTsExtensions": true, // Allow imports to include TypeScript file extensions. Requires `--moduleResolution bundler` and either `--noEmit` or `--emitDeclarationOnly` to be set.
"verbatimModuleSyntax": false, // Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the `module` setting.
"noEmit": true, // Disable emitting files from a compilation.
"isolatedModules": true, // Ensure that each file can be safely transpiled without relying on other imports.
"resolveJsonModule": true, // Enable importing .json files.
"allowJs": true, // Allow JavaScript files to be a part of your program. Use the `checkJs` option to get errors from these files.
"checkJs": true, // Enable error reporting in type-checked JavaScript files.
"moduleDetection": "force", // Control what method is used to detect module-format JS files.
"esModuleInterop": true, // Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility.
/* Linting */
"erasableSyntaxOnly": true, // Do not allow runtime constructs that are not part of ECMAScript.
"skipLibCheck": true, // Skip type checking all .d.ts files.
"strict": true, // Enable all strict type-checking options.
"noUnusedLocals": true, // Enable error reporting when local variables aren't read.
"noUnusedParameters": true, // Raise an error when a function parameter isn't read.
"noFallthroughCasesInSwitch": true, // Enable error reporting for fallthrough cases in switch statements.
"noUncheckedIndexedAccess": true, // Add `undefined` to a type when accessed using an index.
"noUncheckedSideEffectImports": true, // Check side effect imports.
"useUnknownInCatchVariables": true // Default catch clause variables as `unknown` instead of `any`.
}
}