mirror of
https://github.com/zoriya/astal.git
synced 2026-06-11 13:29:07 +00:00
0738194780
starting point of the monorepo
24 lines
506 B
JSON
24 lines
506 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"lib": [
|
|
"ESNext"
|
|
],
|
|
"outDir": "dist",
|
|
"declaration": true,
|
|
"strict": true,
|
|
"moduleResolution": "Bundler",
|
|
"skipLibCheck": true,
|
|
"checkJs": true,
|
|
"allowJs": true,
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "./src/jsx",
|
|
},
|
|
"include": [
|
|
"./node_modules/@girs",
|
|
"./src/**/*",
|
|
"./index.ts",
|
|
]
|
|
}
|