g6/tsconfig.json
Aaron e6908d58bf
chore: update build target and version (#6355)
* chore: setup build target to es6

* chore: update version

* docs: update site docs

---------

Co-authored-by: antv <antv@antfin.com>
2024-09-20 17:29:22 +08:00

20 lines
467 B
JSON

{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"declaration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"module": "esnext",
"moduleResolution": "Node",
"pretty": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "ES6",
"types": ["node", "@types/jest"]
},
"exclude": ["node_modules"]
}