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