| 123456789101112131415 |
- {
- "extends": "../tsconfig.json",
- "include": ["src/**/*.ts", "../../public/app/types/jquery/*.ts"],
- "exclude": ["dist", "node_modules"],
- "compilerOptions": {
- "module": "commonjs",
- "rootDirs": ["."],
- "outDir": "dist/src",
- "declaration": true,
- "declarationDir": "dist",
- "typeRoots": ["./node_modules/@types"],
- "esModuleInterop": true,
- "lib": ["es2015", "es2017.string", "dom"]
- }
- }
|