mirror of https://github.com/certd/certd
42 lines
932 B
JSON
42 lines
932 B
JSON
{
|
|
"compileOnSave": true,
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"inlineSourceMap":true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"stripInternal": true,
|
|
"skipLibCheck": true,
|
|
"pretty": true,
|
|
"declaration": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"typeRoots": [ "./typings", "./node_modules/@types"],
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"composite": false,
|
|
"useDefineForClassFields": true,
|
|
"strict": false,
|
|
// "sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": false,
|
|
"lib": ["ESNext", "DOM"],
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.json"
|
|
],
|
|
"exclude": [
|
|
"*.js",
|
|
"*.ts",
|
|
"dist",
|
|
"node_modules",
|
|
"test"
|
|
],
|
|
}
|