mirror of https://github.com/certd/certd
31 lines
691 B
JSON
31 lines
691 B
JSON
{
|
|
"compileOnSave": true,
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"inlineSourceMap":true,
|
|
"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",
|
|
"test"
|
|
]
|
|
}
|