certd/packages/ui/certd-server/tsconfig.json

31 lines
691 B
JSON
Raw Normal View History

2023-01-29 05:44:19 +00:00
{
"compileOnSave": true,
"compilerOptions": {
2024-07-14 16:30:33 +00:00
"target": "ESNext",
2024-09-26 18:15:41 +00:00
"module": "NodeNext",
"moduleResolution": "NodeNext",
2024-07-14 16:30:33 +00:00
"esModuleInterop": true,
2023-01-29 05:44:19 +00:00
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"inlineSourceMap":true,
"noImplicitThis": true,
"noUnusedLocals": true,
"stripInternal": true,
"skipLibCheck": true,
"pretty": true,
"declaration": true,
2024-07-14 16:30:33 +00:00
"forceConsistentCasingInFileNames": true,
2023-01-29 05:44:19 +00:00
"typeRoots": [ "./typings", "./node_modules/@types"],
2024-07-14 16:30:33 +00:00
"outDir": "dist",
"rootDir": "src",
"preserveWatchOutput": true
2023-01-29 05:44:19 +00:00
},
"exclude": [
2024-07-14 16:30:33 +00:00
"*.js",
"*.ts",
2023-01-29 05:44:19 +00:00
"dist",
"node_modules",
"test"
2024-11-05 17:29:13 +00:00
]
2023-01-29 05:44:19 +00:00
}