| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- {
- "compilerOptions": {
- "target": "es2019",
- "module": "commonjs",
- "allowJs": true,
- "skipLibCheck": true,
- "importHelpers": true,
- "sourceMap": true,
- "removeComments": false,
- "noEmit": true,
- "isolatedModules": true,
- "lib": ["dom", "dom.iterable", "esnext"],
- /* Strict Type-Checking Options */
- // "strict": true,
- "strictNullChecks": true,
- "strictBindCallApply": true,
- "noImplicitAny": false,
- "noImplicitOverride": true,
- /* Additional Checks */
- "noUnusedLocals": false,
- "noUnusedParameters": false,
- /* Module Resolution Options */
- "moduleResolution": "node",
- "typeRoots": [
- "./node_modules/@types"
- ],
- "allowSyntheticDefaultImports": true,
- "esModuleInterop": true,
- /* Misc */
- "preserveConstEnums": true,
- "forceConsistentCasingInFileNames": true,
- "resolveJsonModule": true,
- /* Experimental Options */
- "experimentalDecorators": true,
- "emitDecoratorMetadata": true,
- /* default path aliases */
- "baseUrl": ".",
- "paths": {
- "@growi/*": ["packages/*/src"],
- }
- },
- "exclude": [
- "node_modules",
- "dist",
- "**/*.test.ts"
- ]
- }
|