mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-20 05:11:46 +03:00
b84ef07f07
The version of babel/webpack/everything bundled with CRA is limited in its ES features. Reducing to ES2017 let it work by default.
19 lines
443 B
JSON
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
|
|
}
|
|
} |