123456789101112131415161718 |
- {
- "compilerOptions": {
- "types": ["mocha", "node", "react"],
- "target": "es6",
- "jsx": "react",
- "paths": {
- "onion/*": ["./src/onion/*"],
- },
- "sourceMap": true,
- "noImplicitThis": true,
- "strictBindCallApply": true,
- "strictNullChecks": true,
- "strictFunctionTypes": true,
- "strictPropertyInitialization": true,
- "alwaysStrict": true,
- "moduleResolution": "nodenext",
- },
- }
|