diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-11-30 06:09:29 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-11-30 06:09:29 +0900 |
| commit | 0a71ccbbef6733de0a1272bb21376258c601fe64 (patch) | |
| tree | f0f43e291cc4c283752f753a0b2e47b7d282ac9b /tsconfig.json | |
| parent | 785a98ebb0c65cc400d35897fab1460ad3f6959c (diff) | |
| download | kioku-0a71ccbbef6733de0a1272bb21376258c601fe64.tar.gz kioku-0a71ccbbef6733de0a1272bb21376258c601fe64.tar.zst kioku-0a71ccbbef6733de0a1272bb21376258c601fe64.zip | |
setup pnpm and tsc
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..db698cf --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,22 @@ +{ + "compilerOptions": { + "target": "ES2022", + "lib": ["ES2022"], + "module": "ESNext", + "moduleResolution": "bundler", + "resolveJsonModule": true, + "esModuleInterop": true, + "strict": true, + "skipLibCheck": true, + "declaration": true, + "declarationMap": true, + "sourceMap": true, + "noEmit": true, + "isolatedModules": true, + "verbatimModuleSyntax": true, + "noUncheckedIndexedAccess": true, + "noImplicitOverride": true, + "forceConsistentCasingInFileNames": true + }, + "exclude": ["node_modules", "dist"] +} |
