mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 12:20:40 -07:00
fix: `Nil`(null, undefined) now renders as empty string change: `parser.parseValue()` renamed to `parser.parseOutput` change: registered tags/filters become static and shared across different liquid instances
22 lines
472 B
JSON
22 lines
472 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module":"CommonJS",
|
|
"lib": ["es2015", "es2016", "es2017", "dom"],
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"template": ["src/parser/template"],
|
|
"src/*": ["src/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"src", "test"
|
|
],
|
|
"exclude": [ "node_modules", "dist" ]
|
|
}
|