Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add step for modifying tsconfig.json to Setup Project.
The following playground setup procedure uses the default `tsconfig.json` of `nlx create-vite` as is. https://ubugeeei.github.io/chibivue/00-introduction/040-setup-project.html#プレイグラウンド側の構築 However, the default `tsconfig.json` does not recognize `chibivue` as an alias, as shown below, ```sh mkdir examples cd examples nlx create-vite cat examples/playground/tsconfig.json { "compilerOptions": { "target": "ES2020", { "compilerOptions": { "compilerOptions": { "compilerOptions". "skipLibCheck": true,. /* Bundler mode */ "moduleResolution": "bundler", /* Bundler mode */. "resolveJsonModule": true, /* Bundler mode */ "moduleResolution": "bundler", "allowImportingTsExtensions": true, "resolveJsonModule": true, "resolveJsonModule": true "isolatedModules": true, "noEmit": true, "noEmit": true, "noEmit": true, "noEmit": true "noEmit": true,. /* Linting */ "strict": true, "noUnusedLocals": true, /* Linting */. "noFallthroughCasesInSwitch": true }, } "include": ["src"] } ``` Added step for modifying `tsconfig.json` to match the following sample code. https://github.com/Ubugeeei/chibivue/blob/65ee4f995f3717f32790dd6d93aaa5819f4417d8/book/impls/00_introduction/010_project_setup/examples/playground/tsconfig.json
- Loading branch information