Files
attest/tsconfig.json
T

21 lines
532 B
JSON
Raw 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"
},
2024-02-26 14:46:15 -08:00
"exclude": ["./dist", "./node_modules", "./__tests__", "./coverage"]
2024-02-20 11:22:22 -08:00
}