12345678910111213141516171819202122 |
- {
- "compilerOptions": {
- "target": "es5",
- "alwaysStrict": true,
- "noImplicitAny": true,
- "noImplicitThis": true,
- "sourceMap": false,
- "noUnusedLocals": true,
- "strictNullChecks": true,
- "strictFunctionTypes": true,
- //"downlevelIteration": true,
- "lib": [ "es6", "dom" ],
- "outDir": "build/node_modules",
- "baseUrl": "src",
- "paths": {
- "mol-base": ["./mol-base"],
- "mol-data": ["./mol-data"],
- "mol-io": ["./mol-io"]
- }
- },
- "include": [ "**/*" ]
- }
|