mirror of
https://github.com/merlinhu1/truthmark.git
synced 2026-08-25 07:53:25 +02:00
20 lines
511 B
JSON
20 lines
511 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"lib": ["ES2022"],
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"types": ["node"],
|
|
"verbatimModuleSyntax": true
|
|
},
|
|
"include": ["src/**/*.ts", "tests/**/*.ts", "*.config.ts"],
|
|
"exclude": ["dist", "node_modules"]
|
|
}
|