Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: I6e1c163a147b14b92a5f6ae4de6a87206a6a6964
24 lines
518 B
JSON
24 lines
518 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"outDir": "dist/",
|
|
"declaration": true,
|
|
"composite": true,
|
|
"noEmit": false,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "react",
|
|
"verbatimModuleSyntax": true,
|
|
"plugins": [
|
|
{
|
|
"name": "@astrojs/ts-plugin"
|
|
}
|
|
],
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
}
|
|
},
|
|
"include": [".astro/types.d.ts", "src/**/*.d.ts"],
|
|
"exclude": ["dist", "result", "node_modules"]
|
|
}
|