2023-11-29 00:19:12 +00:00
|
|
|
{
|
|
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
|
|
"display": "Node 20",
|
|
|
|
"_version": "20.1.0",
|
|
|
|
|
|
|
|
"compilerOptions": {
|
|
|
|
"lib": ["es2023"],
|
|
|
|
"module": "node16",
|
|
|
|
"target": "es2022",
|
|
|
|
|
|
|
|
"strict": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"skipLibCheck": true,
|
2023-12-09 16:12:43 +00:00
|
|
|
"checkJs": true,
|
|
|
|
"noEmit": true,
|
2023-11-29 00:19:12 +00:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"moduleResolution": "node16"
|
2023-12-08 19:05:25 +00:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"**/*.ts",
|
|
|
|
"**/*.js",
|
|
|
|
// https://github.com/microsoft/TypeScript/issues/33136#issuecomment-578699134
|
|
|
|
"../common/**/*.js"
|
|
|
|
]
|
2023-11-29 00:19:12 +00:00
|
|
|
}
|