mirror of
https://github.com/certd/certd.git
synced 2026-05-14 12:07:32 +08:00
26 lines
711 B
JSON
26 lines
711 B
JSON
{
|
|
"compileOnSave": true,
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"sourceMap": true,
|
|
"inlineSourceMap": false,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"stripInternal": true,
|
|
"skipLibCheck": true,
|
|
"pretty": true,
|
|
"declaration": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"typeRoots": ["./typings", "./node_modules/@types"],
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"preserveWatchOutput": true
|
|
},
|
|
"exclude": ["*.js", "*.ts", "dist", "node_modules", "src/**/*.test.ts", "test"]
|
|
}
|