34 lines
743 B
JSON
34 lines
743 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"lib": [
|
|
"es2017",
|
|
"dom",
|
|
"dom.iterable"
|
|
],
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"noEmitOnError": true,
|
|
"outDir": "./types",
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"moduleResolution": "node",
|
|
"isolatedModules": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"useDefineForClassFields": false,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "./tsconfig.node.json"
|
|
}
|
|
]
|
|
} |