Files
kami-parse-server/tsconfig.json

19 lines
341 B
JSON
Raw Permalink Normal View History

2025-01-30 11:45:35 +11:00
{
"compilerOptions": {
"module": "commonjs",
"target": "es2015",
2025-01-30 11:45:35 +11:00
"declaration": true,
"emitDeclarationOnly": true,
"outDir": "types",
"noImplicitAny": false,
"allowJs": false,
"skipLibCheck": true,
"paths": {
"deepcopy": ["./types/@types/deepcopy"],
}
2025-01-30 11:45:35 +11:00
},
"include": [
"src/*.ts"
]
}