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

31 lines
691 B
JSON
Raw Normal View History

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