dioxus/packages/extension/tsconfig.json

19 lines
242 B
JSON
Raw Normal View History

2021-12-29 16:59:32 +00:00
{
"compilerOptions": {
"module": "commonjs",
"target": "es2021",
2023-07-08 21:24:01 +00:00
"lib": [
"ES2021"
],
2021-12-29 16:59:32 +00:00
"outDir": "out",
"sourceMap": true,
"strict": true,
"rootDir": "src"
},
2023-07-08 21:24:01 +00:00
"exclude": [
"node_modules",
2023-07-09 01:53:43 +00:00
".vscode-test",
"out"
2023-07-08 21:24:01 +00:00
]
2021-12-29 16:59:32 +00:00
}