-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
42 lines (42 loc) · 1.33 KB
/
tsconfig.json
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
42
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"composite": false,
"declaration": true,
"declarationMap": true /* Create sourcemaps for d.ts files. */,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"inlineSources": false,
"isolatedModules": true /* Ensure that each file can be safely transpiled without relying on other imports. */,
"jsx": "react-jsx",
"lib": ["esnext", "dom", "dom.iterable"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"newLine": "lf",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true, // These cause issues with decorators
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"preserveWatchOutput": true,
"resolveJsonModule": true, // ESM doesn't yet support JSON modules.
"skipLibCheck": true,
"sourceMap": true /* Create source map files for emitted JavaScript files. */,
"strict": true,
"target": "ES2022",
"types": ["node"],
"useDefineForClassFields": true,
"verbatimModuleSyntax": true
},
"ts-node": {
"esm": true,
"experimentalResolver": true,
"files": true,
"transpileOnly": true
},
"exclude": ["node_modules", "**/coverage/*", "**/dist/*"]
}