shrub/pkg/npm/http-api/tsconfig.json

25 lines
564 B
JSON
Raw Normal View History

2021-01-27 08:45:18 +03:00
{
"include": ["src/**/*.ts"],
"exclude": ["node_modules", "dist", "tmp"],
2021-01-27 08:45:18 +03:00
"compilerOptions": {
"outDir": "./tmp",
2021-02-25 06:58:32 +03:00
"module": "ESNext",
"target": "ESNext",
"lib": ["ESNext", "DOM"],
2021-01-27 08:45:18 +03:00
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"declaration": true,
"sourceMap": true,
2021-02-25 06:58:32 +03:00
"strict": false,
"pretty": true,
"noImplicitAny": true,
2021-02-25 06:58:32 +03:00
"noErrorTruncation": true,
"allowJs": true,
2021-04-22 17:17:39 +03:00
"baseUrl": ".",
"paths": {
"*": ["./node_modules/@types/*", "*"]
2021-04-22 17:17:39 +03:00
}
2021-01-27 08:45:18 +03:00
}
}