create-lestin
Version:
Creates a new project with Lestin
22 lines (21 loc) • 633 B
JSON
{
"compilerOptions": {
"noImplicitAny": false,
"target": "ESNext",
"module": "ESNext",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"moduleResolution": "node",
"removeComments": false,
"preserveConstEnums": true,
"sourceMap": true,
"jsx": "react-jsx",
"jsxImportSource": "lestin",
"esModuleInterop": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"allowJs": true,
"forceConsistentCasingInFileNames": false,
},
"include": ["**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx", "**/*.mjs", "**/*.cjs", "**/src/**/*.js"],
"exclude": ["node_modules", "**/*.spec.ts"]
}