urbit/pkg/npm/api/tsconfig.json

19 lines
443 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",
2021-04-22 17:17:39 +03:00
"module": "ES2020",
2021-02-25 06:54:00 +03:00
"noImplicitAny": true,
2021-04-22 17:17:39 +03:00
"target": "ES2020",
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,
"noErrorTruncation": true,
2021-05-05 16:31:03 +03:00
"allowJs": true
2021-02-25 06:54:00 +03:00
}
}