mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-16 04:40:39 -07:00
Re-add suppressImplicitAnyIndexErrors and downlevelIteration removed in
a75033e2c, which broke the rollup TypeScript build on CI. Drop zh-cn
changelog output now that translations were removed.
Co-authored-by: Cursor <[email protected]>
19 lines
463 B
JSON
19 lines
463 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module":"CommonJS",
|
|
"lib": ["es2015", "es2016", "es2017", "dom"],
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"declaration": true,
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"downlevelIteration": true,
|
|
"strict": true,
|
|
"suppressImplicitAnyIndexErrors": true
|
|
},
|
|
"all": true,
|
|
"exclude": [ "node_modules", "dist", "demo", "test" ]
|
|
}
|