| 1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "$schema": "http://json.schemastore.org/tsconfig",
- "extends": "../../tsconfig.base.json",
- "compilerOptions": {
- "jsx": "preserve",
- "resolveJsonModule": true,
- "types": ["vitest/globals", "@testing-library/jest-dom/vitest"],
- "paths": {
- "~/*": ["./src/*"],
- "^/*": ["./*"]
- },
- /* TODO: remove below flags for strict checking */
- "strict": false,
- "strictNullChecks": true,
- "strictBindCallApply": true,
- "noImplicitAny": false,
- "noImplicitOverride": true,
- // Note: To transform paths for both the output .js and .d.ts files, you need both of the below entries
- "plugins": [
- // Transform paths in output .js files
- { "transform": "typescript-transform-paths" },
- // Transform paths in output .d.ts files (Include this line if you output declarations files)
- { "transform": "typescript-transform-paths", "afterDeclarations": true }
- ]
- },
- "include": ["next-env.d.ts", "config", "src"],
- "ts-node": {
- "transpileOnly": true,
- "swc": true,
- "compilerOptions": {
- "module": "CommonJS",
- "moduleResolution": "Node"
- }
- }
- }
|