Files

21 lines
552 B
JSON
Raw Permalink Normal View History

2024-02-20 11:22:22 -08:00
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"rootDir": "./src",
"moduleResolution": "NodeNext",
2025-06-17 09:51:59 -07:00
"isolatedModules": true,
2024-02-20 11:22:22 -08:00
"baseUrl": "./",
"sourceMap": true,
"outDir": "./dist",
"noImplicitAny": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"newLine": "lf"
},
2026-02-05 13:09:08 -08:00
"exclude": ["./dist", "./node_modules", "./__tests__", "./coverage", "./jest.config.ts"]
2024-02-20 11:22:22 -08:00
}