1
0
cvsa/packages/crawler/tsconfig.json
2025-10-06 17:04:16 +08:00

18 lines
354 B
JSON

{
"include": ["**/*.ts"],
"compilerOptions": {
"baseUrl": ".",
"target": "esnext",
"module": "esnext",
"useDefineForClassFields": true,
"moduleResolution": "node10",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
"paths": {
"@core/*": ["../core/*"]
},
"allowSyntheticDefaultImports": true,
"noEmit": true
}
}