starter-kit/tsconfig.json
Martin Pitt 745b4ab8e8 Convert to TypeScript
This needs the usual "I know the `app` element exists" annotation, plus
dealing with a non-existing /etc/hostname (in which case the watch will
return `null`, and we shouldn't poke that into a `string` state).
2024-07-11 11:18:23 -04:00

22 lines
365 B
JSON

{
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"exactOptionalPropertyTypes": true,
"jsx": "react",
"lib": [
"dom",
"es2020"
],
"paths": {
"*": ["./pkg/lib/*"]
},
"moduleResolution": "bundler",
"noEmit": true,
"strict": true,
"target": "es2020"
},
"include": [
"src/**/*"
]
}