halo-render/tsconfig.json

23 lines
327 B
JSON
Raw Normal View History

2023-12-18 15:56:41 +08:00
{
"compilerOptions": {
"outDir": "./dist/",
"noImplicitAny": true,
"module": "esnext",
"target": "es5",
"lib": [
"dom",
"ESNext"
],
"typeRoots": [
"./node_modules/@types"
],
"declaration": true,
},
"include": [
"src"
],
"exclude": [
"node_modules",
]
2023-12-18 15:56:41 +08:00
}