shrub/pkg/npm/api/tsconfig.json

25 lines
498 B
JSON
Raw Normal View History

2021-01-27 08:45:18 +03:00
{
"compilerOptions": {
2021-07-01 06:24:34 +03:00
"baseUrl": ".",
"outDir": "./tmp",
"module": "ESNext",
2021-02-25 06:54:00 +03:00
"noImplicitAny": true,
"target": "ESNext",
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/**/*",
"./tmp/**/*",
"rollup.config.ts"
],
2021-07-01 06:24:34 +03:00
"include": ["./*.ts"]
}