mirror of
https://github.com/certd/certd.git
synced 2026-05-14 03:57:30 +08:00
33 lines
932 B
JSON
33 lines
932 B
JSON
{
|
|
"compileOnSave": true,
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"inlineSourceMap": false,
|
|
"sourceMap": false,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"stripInternal": true,
|
|
"importHelpers": true,
|
|
"skipLibCheck": true,
|
|
"pretty": true,
|
|
"declaration": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"composite": false,
|
|
"useDefineForClassFields": true,
|
|
"strict": true,
|
|
"typeRoots": ["./typings", "./node_modules/@types"],
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": false,
|
|
"lib": ["ESNext", "DOM"]
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.json"],
|
|
"exclude": ["*.js", "*.ts", "*.spec.ts", "dist", "node_modules", "src/**/*.test.ts", "test"]
|
|
}
|