mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 04:10:40 -07:00
18 lines
400 B
JSON
18 lines
400 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module":"ES2020",
|
|
"lib": ["ES2020", "dom"],
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"declaration": true,
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"strict": true
|
|
},
|
|
"all": true,
|
|
"exclude": [ "node_modules", "dist", "demo", "test" ]
|
|
}
|