Files
astal/core/gjs/tsconfig.json
Aylur 0738194780 move libastal to /core
starting point of the monorepo
2024-09-01 02:06:50 +02:00

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",
]
}