mirror of
https://github.com/ecomfe/vue-echarts.git
synced 2025-12-12 11:51:40 +08:00
* chore: not inject inline css on server * feat!: remove csp entry * keep csp title in readme * chore: switch to rolldown and tsdown * update * dedupe * update according to review * emphasize "both" in csp section * load css with unplugin-raw * change tsdown entry
26 lines
587 B
JSON
26 lines
587 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"importHelpers": true,
|
|
"moduleResolution": "bundler",
|
|
"removeComments": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"noEmit": true,
|
|
"baseUrl": ".",
|
|
"types": ["vite/client"],
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable", "ScriptHost"]
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.tsx"],
|
|
"exclude": ["node_modules"],
|
|
"references": [
|
|
{
|
|
"path": "./tsconfig.node.json"
|
|
}
|
|
]
|
|
}
|