| 1234567891011121314151617181920212223 |
- {
- "compilerOptions": {
- "lib": [
- "es6",
- "dom"
- ],
- "module": "commonjs",
- "noEmit": true,
- "noImplicitAny": true,
- "noImplicitThis": true,
- "strictNullChecks": false,
- "forceConsistentCasingInFileNames": true,
- "baseUrl": "",
- "paths": {
- "handsontable": [ "../../" ]
- }
- },
- "include": [
- "../../handsontable.d.ts",
- "**/*.types.ts",
- "../../src/plugins/**/test/*.types.ts"
- ]
- }
|