22 lines
571 B
JSON
22 lines
571 B
JSON
{
|
|
"include": ["./src"],
|
|
"extends": "@tsconfig/node12/tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "./build",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"types": [],
|
|
"typeRoots": ["./ts-declarations", "node_modules/@types"],
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"inlineSources": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"strictFunctionTypes": true,
|
|
"skipLibCheck": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitReturns": true,
|
|
"allowSyntheticDefaultImports": true
|
|
}
|
|
}
|