2019-08-02 09:09:37 -04:00
|
|
|
{
|
2023-09-15 12:31:10 -04:00
|
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
2019-08-02 09:09:37 -04:00
|
|
|
"compilerOptions": {
|
2025-10-31 11:27:30 -04:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"declaration": false,
|
|
|
|
|
"declarationMap": false,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"lib": ["ES2022"],
|
2023-09-15 12:31:10 -04:00
|
|
|
"module": "NodeNext",
|
|
|
|
|
"moduleResolution": "NodeNext",
|
2025-10-31 11:27:30 -04:00
|
|
|
"newLine": "lf",
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
"pretty": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"sourceMap": false,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"strictNullChecks": true,
|
|
|
|
|
"target": "ES2022"
|
2019-08-02 09:09:37 -04:00
|
|
|
},
|
2025-01-08 11:58:58 -05:00
|
|
|
"exclude": ["__fixtures__", "__tests__", "coverage", "dist", "node_modules"],
|
|
|
|
|
"include": ["src"]
|
2019-08-02 09:09:37 -04:00
|
|
|
}
|