urbit/pkg/npm/api/tsconfig.json
gregorytoprak b84ef07f07 npm: fix compatibility with create-urbit-app
The version of babel/webpack/everything bundled with CRA is limited
in its ES features. Reducing to ES2017 let it work by default.
2021-06-16 17:24:40 -04:00

19 lines
443 B
JSON

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