vite
Version:
Native-ESM powered web dev build tool
15 lines (14 loc) • 409 B
JSON
{
"extends": "../../tsconfig.base.json",
"include": ["./", "../../types"],
"exclude": ["**/__tests__"],
"compilerOptions": {
// compile away optional-chaining-operator
// node support table: https://node.green/#ES2020-features-optional-chaining-operator-----
"target": "ES2019",
"outDir": "../../dist/node",
"module": "commonjs",
"lib": ["ESNext"],
"sourceMap": true
}
}