You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
622 B
23 lines
622 B
{
|
|
"extends": "@tsconfig/node14/tsconfig.json",
|
|
"include": ["./src"],
|
|
"exclude": ["**/__mocks__/*", "**/__tests__/*"],
|
|
"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
|
|
}
|
|
}
|