shrub/pkg/npm/api/tsconfig.json

20 lines
452 B
JSON
Raw Normal View History

2021-01-27 08:45:18 +03:00
{
"compilerOptions": {
2021-07-01 06:24:34 +03:00
"baseUrl": ".",
2021-02-25 06:54:00 +03:00
"outDir": "./dist",
2021-04-22 17:17:39 +03:00
"module": "ES2020",
2021-02-25 06:54:00 +03:00
"noImplicitAny": true,
"target": "ES2017",
2021-02-25 06:54:00 +03:00
"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,
2021-07-01 06:24:34 +03:00
"noErrorTruncation": true
},
"exclude": ["node_modules", "./dist/**/*", "@types"],
"include": ["./*.ts"]
}