Files
LUNA-Charts/packages/luna-charts/tsconfig.json

23 lines
582 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"declaration": false,
"experimentalDecorators": true,
"lib": ["dom", "es2022"],
"moduleResolution": "bundler",
"module": "esnext",
"target": "es2022",
"noUnusedLocals": true,
"noUnusedParameters": true,
"rootDir": "./",
"jsx": "react",
"jsxFactory": "h",
"jsxFragmentFactory": "h.Fragment",
"types": ["@stencil/vitest/globals"]
},
"include": ["src"],
"exclude": ["node_modules"]
}