certd/packages/plugins/plugin-cert/tsconfig.json

42 lines
931 B
JSON
Raw Normal View History

2022-11-08 14:10:42 +00:00
{
2024-07-14 16:30:33 +00:00
"compileOnSave": true,
2022-11-08 14:10:42 +00:00
"compilerOptions": {
"target": "ESNext",
2023-05-24 16:41:36 +00:00
"module": "ESNext",
2024-07-14 16:30:33 +00:00
"moduleResolution": "node",
2022-11-08 14:10:42 +00:00
"esModuleInterop": true,
2024-07-14 16:30:33 +00:00
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"inlineSourceMap":true,
"noImplicitThis": true,
"noUnusedLocals": true,
"stripInternal": true,
2022-11-08 14:10:42 +00:00
"skipLibCheck": true,
2024-07-14 16:30:33 +00:00
"pretty": true,
"declaration": true,
"forceConsistentCasingInFileNames": true,
"typeRoots": [ "./typings", "./node_modules/@types"],
"outDir": "dist",
"rootDir": "src",
"composite": true,
"useDefineForClassFields": true,
"strict": false,
// "sourceMap": true,
"resolveJsonModule": true,
"isolatedModules": false,
"lib": ["ESNext", "DOM"],
2022-11-08 14:10:42 +00:00
},
2024-07-14 16:30:33 +00:00
"include": [
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.json"
],
"exclude": [
"*.js",
"*.ts",
"dist",
"node_modules",
"test"
],
2022-11-08 14:10:42 +00:00
}