-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (27 loc) · 1.14 KB
/
tsconfig.json
File metadata and controls
27 lines (27 loc) · 1.14 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
{
"compilerOptions": {
"lib": ["es2023", "es6", "esnext.asynciterable"],
"target": "es6",
"module": "node16", // TODO: use "preserve" when moving to ESM
// "strict": true, // TODO: enable
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */,
"checkJs": false,
"allowJs": false,
"moduleResolution": "node16",
"resolveJsonModule": true,
"skipLibCheck": true,
"noImplicitAny": false, // TODO: enable
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
"strictNullChecks": true,
"isolatedModules": true,
// for running typescript with tsx without the need to build and watch
// "verbatimModuleSyntax": true, // TODO: enable when we want to move to ESM
"strictPropertyInitialization": false, // disable because of entities,
"strict": true,
"typeRoots": ["./node_modules/@types", "./src/@types/*"],
"sourceMap": true
},
"include": ["src/**/*", "test"]
}