mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 12:20:40 -07:00
21 lines
498 B
JSON
21 lines
498 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module":"CommonJS",
|
|
"lib": ["es2015", "es2016", "es2017", "dom"],
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"template": ["src/parser/template"],
|
|
"src/*": ["src/*"],
|
|
"test/*": ["test/*"]
|
|
}
|
|
},
|
|
"include": [ "src", "test" ],
|
|
"exclude": [ "node_modules", "dist" ]
|
|
}
|