shrub/pkg/npm/api/tsconfig.json

19 lines
444 B
JSON
Raw Normal View History

2021-01-27 08:45:18 +03:00
{
2021-02-25 06:54:00 +03:00
"include": ["*.ts"],
"exclude": ["node_modules", "dist", "@types"],
2021-01-27 08:45:18 +03:00
"compilerOptions": {
2021-02-25 06:54:00 +03:00
"outDir": "./dist",
"module": "ESNext",
"noImplicitAny": true,
"target": "ESNext",
"pretty": true,
2021-01-27 08:45:18 +03:00
"moduleResolution": "node",
"esModuleInterop": true,
2021-02-25 06:54:00 +03:00
"allowSyntheticDefaultImports": true,
"declaration": true,
"sourceMap": true,
"strict": false,
"noErrorTruncation": true,
"allowJs": true,
}
}