1{ 2 "compilerOptions": { 3 "rootDir": ".", 4 "outDir": "../built/local", 5 6 "pretty": true, 7 "lib": ["es2018"], 8 "target": "es2018", 9 "module": "CommonJS", 10 "moduleResolution": "node", 11 12 "declaration": true, 13 "declarationMap": true, 14 "sourceMap": true, 15 "composite": true, 16 "emitDeclarationOnly": true, 17 "noEmitOnError": true, 18 19 "strictNullChecks": true, 20 "noImplicitAny": true, 21 "noImplicitThis": true, 22 "strictPropertyInitialization": true, 23 "noUnusedLocals": true, 24 "noUnusedParameters": true, 25 26 "skipLibCheck": true, 27 28 "alwaysStrict": true, 29 "preserveConstEnums": true, 30 "newLine": "lf", 31 32 "types": [] 33 } 34} 35