chore: 프로젝트 설정 파일 추가 (.gitignore, tsconfig, granite.config 등)

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
2026-04-01 22:43:30 +09:00
parent c9ab987e02
commit e4c0e69e7a
6 changed files with 22384 additions and 0 deletions

17
granite.config.ts Normal file
View File

@@ -0,0 +1,17 @@
import { appsInToss } from '@apps-in-toss/framework/plugins';
import { defineConfig } from '@granite-js/react-native/config';
export default defineConfig({
scheme: 'intoss',
appName: 'archetype-firstspark',
plugins: [
appsInToss({
brand: {
displayName: '아키타입: 첫 번째 불꽃',
primaryColor: '#FF6B35',
icon: './app-icon.png',
},
permissions: [],
}),
],
});