shrub/pkg/npm/api/tsconfig.json
2021-07-02 10:40:56 +10:00

20 lines
452 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"outDir": "./dist",
"module": "ES2020",
"noImplicitAny": true,
"target": "ES2017",
"pretty": true,
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"declaration": true,
"sourceMap": true,
"strict": false,
"noErrorTruncation": true
},
"exclude": ["node_modules", "./dist/**/*", "@types"],
"include": ["./*.ts"]
}