1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
| "compilerOptions": { "incremental": true, "tsBuildInfoFile": "./buildFile", "diagnostics": true, "target": "ES5", "module": "CommonJS", "outFile": "./app.js", "lib": ["DOM", "ES2015", "ScriptHost", "ES2019.Array"], "allowJS": true, "checkJs": true, "outDir": "./dist", "rootDir": "./", "declaration": true, "declarationDir": "./file", "emitDeclarationOnly": true, "sourceMap": true, "inlineSourceMap": true, "declarationMap": true, "typeRoots": [], "types": [], "removeComments":true, "noEmit": true, "noEmitOnError": true, "noEmitHelpers": true, "importHelpers": true, "downlevelIteration": true, "strict": true, "alwaysStrict": true, "noImplicitAny": true, "strictNullChecks": true, "strictFunctionTypes": true, "strictPropertyInitialization": true, "strictBindCallApply": true, "noImplicitThis": true, "noUnusedLocals": true, "noUnusedParameters": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, "esModuleInterop": true, "allowUmdGlobalAccess": true, "moduleResolution": "node", "baseUrl": "./", "paths": { "jquery": ["node_modules/jquery/dist/jquery.min.js"] }, "rootDirs": ["src","out"], "listEmittedFiles": true, "listFiles": true }
|